other_stats.html
451 Bytes
{% if stats %}
<strong>Statystyki dodatkowe wyliczone dla haseł o statusie wyższym niż "gotowe":</strong>
<table class='VocabTable' id='other-stats-table'>
<tr>
<td class='EmptyCell'/>
<td class='ColumnHeader'> Wartość (zaktualizowano: {{ stats.0.date|date:"d M Y" }})</td>
</tr>
{% for stat in stats %}
<tr>
<td class='RowHeader'>{{ stat.label }}</td>
<td>{{ stat.value }}</td>
</tr>
{% endfor %}
</table>
{% endif %}