{% extends "admin/layout.html" %} {% block title %}{{ _("Theme Manager") }}{% endblock %} {% block contents %}

{{ _("Theme Manager") }}

{%- for theme in themes %}

{{ theme.display_name|e }}

{%- if not theme.is_current %}

{{ _('Select this theme') }}

{% endif %} {%- if theme.has_preview %} preview image {%- endif %}

{{ theme.description|e }}

{%- if theme.has_author %}

{% trans author=theme.html_author_info %}by {{ author }}{% endtrans %} {% if theme.contributors %} {% trans contributors=theme.html_contributors_info %} and {{ contributors }} {% endtrans %} {% endif %}

{%- endif %}
{%- endfor %}
{%- if current_theme.configurable %}
{%- endif %} {% endblock %}