15 lines
640 B
HTML
15 lines
640 B
HTML
{% extends "asuzr/totals_table.html" %}
|
|
{% load django_tables2 %}
|
|
{% load i18n %}
|
|
{% block table.tbody.row %}
|
|
<tr class="
|
|
{% if row.date.is_weekend %}weekend{% else %}
|
|
{{ forloop.counter|divisibleby:2|yesno:"even,odd" }}{% endif %}
|
|
"> {# avoid cycle for Django 1.2-1.6 compatibility #}
|
|
{% for column, cell in row.items %}
|
|
<td {{ column.attrs.td.as_html }}>{% if column.localize == None %}{{ cell }}{% else %}{% if column.localize %}{{ cell|localize }}{% else %}{{ cell|unlocalize }}{% endif %}{% endif %}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endblock table.tbody.row %}
|
|
|