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

{% trans "Layouts" %}

{% blocktrans %}Choose how each page type renders on the public site. The selection is persisted in Site.settings; templates resolve the suffix automatically.{% endblocktrans %}

{% csrf_token %} {% for kind, options in groups.items %}

{% if kind == "home" %}{% trans "Homepage" %} {% elif kind == "list" %}{% trans "Blog index" %} {% elif kind == "detail" %}{% trans "Post detail" %} {% elif kind == "page" %}{% trans "Static pages" %} {% endif %}

{% for value, label, desc in options %} {% endfor %}
{% endfor %}
{% endblock %}