{% extends 'base.html' %} {% block title %} {{ title }} | Learning management system{% endblock title %} {% load static %} {% load i18n %} {% block content %} {% if user.is_authenticated %} {% include 'snippets/messages.html' %}
  • {{ user.get_full_name|title }}
  • Last login: {{ user.last_login|date }}
  • Role: {{ user.get_user_role }}

Edit Profile Change password
{% if user.is_teacher %}

My Subjects

{% if Subjects %} {% else %}
No Subjects assigned!
{% endif %}
{% endif %}

Personal Info

First Name: {{ user.first_name|title }}

Last Name: {{ user.last_name|title }}

ID No.: {{ user.username }}

{% if user.is_student %}

Applicant Info

School: Hawas Preparatory School

Level: {{ level.level }}

{% endif %}

Contact Info

Email: {{ user.email }}

Tel No.: {{ user.phone }}

Address/city: {{ user.address }}


Important Dates

Last login: {{ user.last_login }}

{% if current_semester and current_session %}

Academic Year: {{ current_semester }} Semester {{ current_session }}

{% endif %}

Registered Date: {{ user.date_joined|date }}

{% endif %} {% endblock content %}