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