{% extends 'website/templates/base.html' %} {% load widget_tweaks %} {% load static %} {% block title %}User Profile{% endblock %} {% block cssblock %} {% endblock %} {% block heading %} User Profile {% endblock %} {% block content %}
First name
{% if profile.user.first_name %}{{ profile.user.first_name }}{% else %}-{% endif %}
Last name
{% if profile.user.last_name %}{{ profile.user.last_name }}{% else %}-{% endif %}
Profile created on
{{ profile.created }}
{% endblock %}