{% extends 'leprikon/default.html' %} {% load i18n leprikon_tags sekizai_tags %} {% block content %}

{% block title %}{{ timesheet.period.name }}{% endblock %}

{% if not object.submitted %}
{% trans 'add entry' %} {% trans 'submit' %}
{% endif %} {% for entry in timesheet.all_entries %} {% endfor %}
{% trans 'date' %} {% trans 'start' %} {% trans 'duration' %} {% trans 'type' %} {% trans 'description' %}
{{ entry.date }} {{ entry.start }} {{ entry.duration }} {{ entry.group.name }} {{ entry.description | safe }} {% trans 'edit' %} {% if not timesheet.submitted %} {% trans 'delete' %} {% endif %}
{% endblock %}