{% extends "default_print.html" %} {% load servo_tags %} {% load mptt_tags %} {% load static %} {% load i18n %} {% block content %}
{% if location.logo %} logo {% endif %}
{{ location.title }}
{{ location.address }}
{{ location.zip_code }}, {{ location.city }}
{{ location.notes }}
{% block location_info %} {% endblock location_info %} {% trans "Email Address" %}: {{ location.email }}
{% trans "Phone" %}: {{ location.phone }}

{% trans "Employee" %}: {{ calendar.user.get_full_name }}
{% trans "Date" %}: {% now "SHORT_DATE_FORMAT" %}

{{ title }}

{% for i in events %} {% empty %} {% endfor %}
{% trans "Date" %} {% trans "Started At" %} {% trans "Finished At" %} {% trans "Duration" %} {% trans "Notes" %}
{% ifchanged i.started_at|date %}{{ i.started_at|date:"SHORT_DATE_FORMAT" }}{% endifchanged %} {{ i.started_at|time:"TIME_FORMAT" }} {{ i.finished_at|time:"TIME_FORMAT"|default:"-" }} {{ i.get_duration }} {{ i.notes|default:'' }}
{% trans "No events found" %}
{% trans "Total" %} {{ subtitle }}



{% trans "Manager" %}

{% trans "Employee" %}
{% endblock content %}