<pstyle="text-align:center"class="unimportant">({% trans 'There are no themes available.' %})</p>
{% else %}
<tableclass="modlog">
{% for theme_name, theme in themes %}
<tr>
<thclass="minimal">{% trans 'Name' %}</th>
<td>{{ theme.name }}</td>
</tr>
<tr>
<thclass="minimal">{% trans 'Version' %}</th>
<td>{{ theme.version }}</td>
</tr>
<tr>
<thclass="minimal">{% trans 'Description' %}</th>
<td>{{ theme.description }}</td>
</tr>
<tr>
<thclass="minimal">{% trans 'Thumbnail' %}</th>
<td>
<imgstyle="float:none;margin:4px{% if theme_name in themes_in_use %};border:2px solid red;padding:4px{% endif %}"src="{{ config.dir.themes_uri }}/{{ theme_name }}/thumb.png"/>
</td>
</tr>
<tr>
<thclass="minimal">{% trans 'Actions' %}</th>
<td><ulstyle="padding:0 20px">
<li><atitle=" {% trans 'Use theme' %}"href="?/themes/{{ theme_name }}">
{% if theme_name in themes_in_use %}{% trans 'Reconfigure' %}{% else %}{% trans 'Install' %}{% endif %}
</a></li>
{% if theme_name in themes_in_use %}
<li><ahref="?/themes/{{ theme_name }}/rebuild">{% trans 'Rebuild' %}</a></li>
<li><ahref="?/themes/{{ theme_name }}/uninstall"onclick="return confirm('Are you sure you want to uninstall this theme?');">{% trans 'Uninstall' %}</a></li>