{% extends 'microsys/base.html' %} {% load django_tables2 %} {% load crispy_forms_tags %} {% load static %} {% block title %}{{ MS_TRANS.profile }}{% endblock %} {% block content %}

{{ MS_TRANS.profile }}

Profile Image

{{ user.full_name }}

{{ MS_TRANS.tbl_username }}
{{ user.username }}
{{ MS_TRANS.tbl_email }}
{{ user.email }}
{{ MS_TRANS.permissions }}
{% if user.is_superuser %} {{ MS_TRANS.role_superuser }} {% elif user.is_staff %} {{ MS_TRANS.role_staff }} {% else %} {{ MS_TRANS.role_user }} {% endif %}
{{ MS_TRANS.tbl_phone }}
{{ user.phone|default:"-" }}
{% endblock %}