Blame view

dictionary/templates/other_stats.html 373 Bytes
Bartłomiej Nitoń authored
1
{% if stats %}
Bartłomiej Nitoń authored
2
3
<strong>Statystyki dodatkowe wyliczone dla haseł o statusie wyższym niż "gotowe" (ostatnia aktualizacja: {{ stats.0.date|date:"d M Y" }}):</strong>
<table class='VocabTable' id='other-stats-table'>	
Bartłomiej Nitoń authored
4
5
6
7
8
9
10
11
  {% for stat in stats %}
  	<tr>
  		<td class='RowHeader'>{{ stat.label }}</td>
  		<td>{{ stat.value }}</td>
  	</tr>
  {% endfor %}
</table>
{% endif %}