{% extends "_base.html" %} {% load static %} {% block styles %} {{ block.super }} {% endblock styles %} {% block ui_active_tab %}'workers'{% endblock ui_active_tab %} {% block page_header %}Workers{% endblock page_header %} {% block page_description %}information{% endblock page_description %} {% block breadcrumb %} {% include "doctors/breadcrumb.html" %} {% endblock breadcrumb %} {% block maincontent %}
Add new worker
{% if doctors_list %} {% for worker in doctors_list %} {% endfor %}
No. First name Last name Languages Unit Details On leave
{{ forloop.counter }} {{ worker.first_name }} {{ worker.last_name }} {% autoescape off %} {% for language in worker.languages.all %} {{ language.image_img }} {% endfor %} {% endautoescape %} {{ worker.unit }} Details {% if worker.is_on_leave %} {% else %} {% endif %}
{% else %}

No subjects found.

{% endif %}
{% endblock maincontent %} {% block scripts %} {{ block.super }} {% endblock scripts %}