{% extends "madga/studio/base.html" %} {% load i18n madga_studio_tags %} {% block breadcrumbs %}{% trans "Site" %}/{% trans "Theme gallery" %}{% endblock %} {% block content %}

{% trans "Theme gallery" %}

{% trans "Registered themes (including pip-installed ones). Click Activate to apply one to the site, or Activate with palette to overwrite colors and fonts with the ones the theme suggests." %}

{% for theme in themes %}
{% if site.theme == theme.key %}{% trans "Active" %}{% endif %}
{{ theme.label }}
CTA
{{ theme.label }} {{ theme.key }}
{% if theme.description %}

{{ theme.description }}

{% endif %}
{% if theme.author %}{% blocktrans with author=theme.author %}by {{ author }}{% endblocktrans %}{% endif %}
{% if site.theme == theme.key %} {% studio_icon "check" size=12 stroke=2.5 %} {% trans "In use" %} {% else %}
{% csrf_token %}
{% if theme.accent_color or theme.heading_font %}
{% csrf_token %}
{% endif %} {% endif %}
{% empty %} {% studio_empty title=_("No themes") message=_("No themes are registered. Install one via pip or register one from code.") %} {% endfor %}
{% endblock %}