{% extends "base.html" %}
{% load i18n %}
{% activetab "main" "time" %}
{% block page-title %}{% trans "Weekly view" %}{% endblock %}
{% block navigation %}
{% activetab "main" "time" %}
{{ block.super }}
{% endblock %}
{% block sub-navigation %}
{% endblock %}
{% block content %}
{% for day in days %}
{{ day|date:"D" }} {{ day|date:"SHORT_DATE_FORMAT" }}
|
{% endfor %}
{% for date, bookings in day_data %}
{% if bookings %}
{% endif %}
|
{% endfor %}
{% for sum in sum_data %}
{% if sum %}{{ sum|format_minutes_to_time }}{% else %}----{% endif %} |
{% endfor %}
{% if week_sum %}{{ week_sum|format_minutes_to_time }}{% else %}----{% endif %}
|
{% endblock %}