{% extends 'base.html' %} {% load format_tags %} {% block title %}Workers | FoxFitt{% endblock %} {% block content %}

Workers

{{ total_count }} worker{{ total_count|pluralize }} {% if q %} matching "{{ q }}"{% endif %} {% if status != 'all' %} — {{ status|capfirst }} only{% endif %}

{% if workers %}
{% for w in workers %} {% endfor %}
Name ID Number Phone Salary Days Worked Active Actions
{{ w.name }} {{ w.id_number }} {{ w.phone_number|default:'—' }} R {{ w.monthly_salary|money }} {{ w.days_worked }} {% if w.active %} Active {% else %} Inactive {% endif %}
{% else %}

No workers{% if q %} match "{{ q }}"{% endif %}. {% if q or status != 'active' %}
Clear filters{% endif %}

{% endif %}
{% endblock %}