{% extends 'base.html' %} {% load i18n %} {% load cms %} {% block title %}{{block.super}} - {{page.title}}{% endblock %} {% block content %}
{% for section in sections %} {% include_section section %} {% endfor %}
{% if user.is_staff %} {% if page.slug %} {% trans 'edit this page' %} {% else %} {% trans 'edit this page' %} {% endif %} {% else %} {% trans 'login' %} {% endif %}
{% endblock %} {% block extrabody %} {% endblock %}