{% extends 'settings/layout.html' %} {% load i18n %} {% block title %}{% trans "Themes" %}{% endblock %} {% block header %}{% trans "Themes" %}{% endblock %} {% block panel %} {% if success %}
{% trans "Successfully added theme" %}
{% endif %}

{% trans "Default theme:" %} {{ site.default_theme.name }}

{% trans "Set default theme" %}

{% trans "Upload theme" %}

{% if theme_form.errors %}
{% trans "Unable to save theme" %}
{% endif %}
{% csrf_token %}
{{ theme_form.name }} {% include 'snippets/form_errors.html' with errors_list=theme_form.name.errors id="desc_name" %}
{{ theme_form.theme_file }} {% include 'snippets/form_errors.html' with errors_list=theme_form.theme_file.errors id="desc_theme_file" %}

{% trans "Available Themes" %}

{% for theme in themes %} {% endfor %}
{% trans "Theme name" %} {% trans "File" %} {% trans "Actions" %}
{{ theme.name }} {{ theme.theme_path }} {% if theme.theme_file %}
{% endif %}
{% endblock %}