{% extends "datebook/base.html" %} {% load i18n %} {% block head_base_js %}{{ block.super }} {% comment %}{% endcomment %} {% endblock %} {% block datebook_content %} {% spaceless %} {% for classname, name in datebook_calendar.weekheader %} {% endfor %} {% endspaceless %}{% for week in datebook_calendar.month %} {% spaceless %} {% for day in week %} {% endfor %} {% endspaceless %}{% endfor %}
{% trans name %}
Week {{ forloop.counter }} {% if not day.noday %}
{{ day.date.day }} {% if day.entry %} {% if day.entry.vacation %}

Vacation

{% else %}

{{ day.entry.get_working_hours }}


{{ day.entry.content }}

{{ day.entry.get_elapsed_time }}

{% endif %} {% endif %}
{% endif %}
{% endblock %}