Added site_name to index template

pull/1830/merge
Timo Rieber 2015-10-10 20:40:26 +02:00 zatwierdzone przez Matt Westcott
rodzic 3fa1c35aaf
commit a6644b72e3
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -16,6 +16,7 @@
{% endif %}
</th>
<th class="port">{% trans "Port" %}</th>
<th class="site-name">{% trans "Site name" %}</th>
<th class="root-page">{% trans "Root page" %}</th>
<th class="is-default-site">{% trans "Default?" %}</th>
</tr>
@ -29,6 +30,9 @@
</h2>
</td>
<td class="port">{{ site.port }}</td>
<td class="site-name">
{% if site.site_name %}{{ site.site_name }}{% endif %}
</td>
<td class="root-page">{{ site.root_page }}</td>
<td class="is-default-site">
{% if site.is_default_site %}<div class="status-tag primary">{% trans "Default" %}</div>{% endif %}