timer.html 386 B

123456789101112131415161718192021
  1. {% load i18n %}
  2. <table>
  3. <colgroup>
  4. <col style="width:20%"/>
  5. <col/>
  6. </colgroup>
  7. <thead>
  8. <tr>
  9. <th>{% trans "Resource" %}</th>
  10. <th>{% trans "Value" %}</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. {% for key, value in rows %}
  15. <tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">
  16. <td>{{ key|escape }}</td>
  17. <td>{{ value|escape }}</td>
  18. </tr>
  19. {% endfor %}
  20. </tbody>
  21. </table>