Commit 89bdee85df08939570104115b469ff9b40eb17a3

Authored by Bartłomiej Nitoń
1 parent d4f49bb7

Added other_stats.html template file.

dictionary/templates/other_stats.html 0 → 100644
  1 +{% if stats %}
  2 +<strong>Statystyki dodatkowe wyliczone dla haseł o statusie wyższym niż "gotowe":</strong>
  3 +<table class='VocabTable' id='other-stats-table'>
  4 + <tr>
  5 + <td class='EmptyCell'/>
  6 + <td class='ColumnHeader'> Wartość (zaktualizowano: {{ stats.0.date|date:"d M Y" }})</td>
  7 + </tr>
  8 + {% for stat in stats %}
  9 + <tr>
  10 + <td class='RowHeader'>{{ stat.label }}</td>
  11 + <td>{{ stat.value }}</td>
  12 + </tr>
  13 + {% endfor %}
  14 +</table>
  15 +{% endif %}
0 16 \ No newline at end of file
... ...