{% extends "base.html" %}
{% load static %}
{% block title %}
{% endblock title %}
{% block Style %}
{% endblock Style %}
{% block MainContent %}
{% if employee.image %}
{% endif %}
User Name |
{{user_info.username}} |
{% if user_info.email %}
Email address |
{{user_info.email}} |
{% endif %}
{% if user_info.mother_organization %}
Mother Organization |
{{user_info.mother_organization}} |
{% endif %}
{% if user_info.branch %}
Branch |
{{user_info.branch}} |
{% endif %}
First name |
{{user_info.first_name}} |
{% if user_info.user_type %}
User type |
{{user_info.user_type}} |
{% endif %}
{% if user_info.sister_organization %}
Sister Organization |
{{user_info.sister_organization}} |
{% endif %}
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}