Отчет за VOIP

Версия 1 oleg
на май 25, 2016 19:16.

по сравнению с
Ключ
Эта строка удалена.
Это слово было удалено. Это слово было добавлено.
Эта строка добавлена.

Изменения (7)

просмотр истории страницы
HTML шаблона:
{code:lang=html}<!DOCTYPE html>
{% load pytils_numeral %}
<html>

{% if voip_logs %}
{% for account in voip_logs|slice:":-1" %}
<table border="1" style="font-size: 8pt" cellpadding="2" class="list services" id="table1">
<tr style="text-align: center; font-weight: bold; margin-left:5px;">
<td width="70">Сумма</td>
</tr>
{% for account_res in account.result %}
{% for voip_log in account_res.voip_logs %}
{% if forloop.counter0|divisibleby:2 %}
<tr>
{% endif %}
{% endfor %}
{% endfor %}
</table>
{% endfor %}
<script src="{{ STATIC_URL }}js/jquery.min.js"></script>
</body>
</html>{code}