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

{% trans "Homepage" %}

{% trans "Blocks that appear on the home page, in order. Use the arrows to move them and toggle a block off without deleting it via the switch." %}

{# Add-block tray (driven by registered block types) ------------------- #}
{% trans "Add a block" %}
{% for bt in block_types %}
{% csrf_token %}
{% endfor %}
{# Existing blocks ----------------------------------------------------- #}
{% for row in blocks %} {% with b=row.obj %}
{% studio_icon "more-v" size=14 stroke=2 %}{% studio_icon "more-v" size=14 stroke=2 %}
{{ row.label }} {% if not b.is_visible %}{% trans "Hidden" %}{% endif %} {{ row.description }}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% if row.type %}
{% csrf_token %} {% for f in row.fields_html %}
{{ f.html }} {% if f.help_text %}{{ f.help_text }}{% endif %}
{% endfor %}
{% else %}

{% blocktrans with type=b.block_type %}The block type "{{ type }}" is not registered. Delete it, or restore the type in code.{% endblocktrans %}

{% endif %}
{% endwith %} {% empty %} {% studio_empty title=_("Homepage is empty") message=_("Add your first block from the panel above.") %} {% endfor %}
{% endblock %}