{% extends "datebook/base.html" %} {% load i18n %} {% block head_base_js %}{{ block.super }} {% comment %}{% endcomment %} {% endblock %} {% block datebook_container_css_classes %} row-fluid{% endblock %} {% block datebook_content %}
{% for classname, name in datebook_calendar.weekheader %} | {% trans name %} | {% endfor %} {% endspaceless %}
---|---|
Week {{ forloop.counter }} | {% for day in week %}
{% if not day.noday %}
{% if day.entry %}
{% endif %}
{{ day.date.day }} {% if day.entry.vacation %}Vacation {% else %}{{ day.entry.get_working_hours }} {{ day.entry.content }}
{{ day.entry.get_elapsed_time }} {% endif %} {% else %}{{ day.date.day }} {% endif %} |
{% endfor %}
{% endspaceless %}