{% extends "hrms/base.html" %} {% load crispy_forms_tags %} {% block content %} {% if may_records %}
{% for records in may_records %} {% endfor %}
# From To Company Position Action
{{ forloop.counter}} {{ records.from_date }} {{ records.to_date }} {{ records.company }} {{ records.position }}
{% csrf_token %}
{% endif %} {% if may_loan %}
{% for loan in may_loan %} {% endfor %}
# Amount Rate to deduct Status Action
{{ forloop.counter}} {{ loan.load_amount }} {{ loan.rate_to_deduct }} {% if loan.status == False %} Not Yet Paid {% else %} Paid {% endif %} View Contribution
{% endif %} {% if may_uniform %}
{% for uni in may_uniform %} {% endfor %}
# Amount Rate to deduct Status Date Created Action
{{ forloop.counter}} {{ uni.uniform }} {{ uni.rate_to_deduct }} {% if uni.status == False %} Not Yet Paid {% else %} Paid {% endif %} {{ uni.created_at }} Delete
{% endif %} {% endblock content %}