weekend_table.html 640 B

1234567891011121314
  1. {% extends "asuzr/totals_table.html" %}
  2. {% load django_tables2 %}
  3. {% load i18n %}
  4. {% block table.tbody.row %}
  5. <tr class="
  6. {% if row.date.is_weekend %}weekend{% else %}
  7. {{ forloop.counter|divisibleby:2|yesno:"even,odd" }}{% endif %}
  8. "> {# avoid cycle for Django 1.2-1.6 compatibility #}
  9. {% for column, cell in row.items %}
  10. <td {{ column.attrs.td.as_html }}>{% if column.localize == None %}{{ cell }}{% else %}{% if column.localize %}{{ cell|localize }}{% else %}{{ cell|unlocalize }}{% endif %}{% endif %}</td>
  11. {% endfor %}
  12. </tr>
  13. {% endblock table.tbody.row %}