{% extends 'reseau/main.html' %} {% load static %} {% block content %}

Mes Remplaçants

{% csrf_token %}
{% for worker in workers %}

{% if worker.user.last_name == '' %}
{{worker.user.username|title}} (identifiant)
{% else %}
{{worker.user.first_name}} {{worker.user.last_name}}
{% endif %}
{% if worker.metiers == None %}
{{worker.structure}}
{% else %}
{{worker.metiers}}
{% endif %}
{% if worker.day %} {% endif %}
{% if worker.night %} {% endif %}
{% if worker.statut == None %} {% else %} {% endif %}
{% endfor %}
{% endblock content %}