{% extends "store/base.html" %} {% load static %} {% load render_table from django_tables2 %} {% load querystring from django_tables2 %} {% block title %}Staff{% endblock title %} {% block content %}
Add Staff Export to Excel
{% if user.profile.role == 'AD' or user.profile.role == 'EX' %} {% endif %} {% for profile in profiles %} {% endfor %}
Id Profile Image Username Phone Number Status Role Action
{{ profile.id }} Profile Image {{ profile.user.username }} {{ profile.telephone }} {% if profile.status == 'A' %} Active {% elif profile.status == 'OL' %} On Leave {% else %} Inactive {% endif %} {% if profile.role == 'AD' %} Admin {% elif profile.role == 'EX' %} Executive {% else %} Operative {% endif %} {% if user.profile.role == 'AD' or user.profile.role == 'EX' %} {% endif %} {% if user.profile.role == 'AD' %} {% endif %}
{% endblock %}