{% extends "base.html" %} {% block title %}Historique{% endblock %} {% block content %}

Historique

{% if not entries %}

Aucune entrée pour le moment.

{% endif %}
{% for entry in entries %}

{{ entry.date.strftime('%a %d %b %Y') }}

{{ entry.day_type }} {% if entry.time_slots %} — {{ entry.total_hours_str() }}{% endif %} {% if entry.journey_profile_id %} — {{ entry.journey_profile_id }}{% endif %}

{% if entry.comment %}

{{ entry.comment }}

{% endif %}
Éditer
{% endfor %}
{% endblock %}