{% extends 'base.html' %} {% load static %} {% block title %}Profile - ICTAZ Jobs Portal{% endblock %} {% block content %}
My Profile
{% load crispy_forms_tags %} {% crispy form %}
Account Information
{{ user.username }}
{{ user.get_role_display }}
{{ user.date_joined|date:"M d, Y" }}
{% if user.is_verified %} Verified {% else %} Pending Verification {% endif %}
{% endblock %}