{% extends "basic/base_template.html" %} {% block pageName %} Punishment Table {% endblock pageName %} {% block content %}
PDF
{% for module in user_modules %} {% if module.name == 'create_punishment_admin' or module.name == 'create_punishment_battalion' or module.name == 'create_punishment_company' %} {% endif %} {% endfor %}
{% for item in punishments %} {% endfor %}
Action # Date BA No Rk Name Punishment Type Punishment Name
{% for module in user_modules %} {% if module.name == 'delete_punishment_admin' or module.name == 'delete_punishment_battalion' or module.name == 'delete_punishment_company' %} {% endif %} {% endfor %}
{{forloop.counter}} {{item.date|date:"d-M-Y"|default:"N/A"}} {{item.member.army_no}} {{item.member.rank.name}} {{item.member.name}} {{item.punishment_type.text|default:"N/A"}} {{item.punishment_name.text|default:"N/A"}}
{% include "components/pagination.html" with page_obj=punishments %}
{% endblock content %}