chrono/chrono/manager/templates/chrono/manager_events_timesheet_pd...

23 lines
734 B
HTML

{% load static i18n %}
<html>
<head>
<base href="{{ base_uri }}" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>{% blocktrans with start=form.cleaned_data.date_start end=form.cleaned_data.date_end %}Timesheet from {{ start }} to {{ end }}{% endblocktrans %}</title>
<meta name="author" content="Entr'ouvert" />
<link href="{% static 'css/timesheet.css' %}" media="print" rel="stylesheet" />
<style media="print">
@page {
size: {{ form.cleaned_data.orientation|default:"portrait" }};
}
</style>
</head>
<body>
<div id="main">
{% if request.GET and form.is_valid %}
{% include 'chrono/manager_events_timesheet_fragment.html' %}
{% endif %}
</div>
</body>
</html>