{% extends "admin/layout.html" %} {% block title %}Homepage Settings{% endblock %} {% block body %}

{% trans %}Homepage Settings{% endtrans %}

{% for section in sections %}

{{ section.section }}

{% for field in section.fields %}
{% if field.is_textarea %} {% else %} {% endif %}

{% trans %}Default:{% endtrans %} {{ field.default | truncate(80) }}

{% endfor %}
{% endfor %}
{% trans %}Cancel{% endtrans %}
{% endblock %} {% block page_scripts %} {% endblock %}