Files
record/templates/asuzr/desreport.html

29 lines
647 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<html>
<head>
<title></title>
<meta content="">
<style></style>
</head>
<body>
<H3>Отчет по дизайнерам за {{start_date}} - {{end_date}} </H3>
<TABLE BORDER WIDTH="30%">
{% if des_list %}
<ul>
<TR>
<TH WIDTH="40%">Дизайнер</TH>
<TH>Всего заказов</TH>
<TH>Общая сумма</TH>
</TR>
{% for des in des_list %}
<TR>
<TD>{{des.designer__first_name}}</TD>
<TD>{{des.designer__count}}</TD>
<TD>{{des.price__sum}}</TD>
</TR>
{% endfor %}
</ul>
{% else %}
<p>Список заказов пуст</p>
{% endif %}
</body>
</html>