{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block title %}Objectbrowser{% endblock %} {% block page_content %}
{% if errors|length %} {% for error in errors %}
{% trans "Warning!" %} {{ error }}
{% endfor %} {% endif %} {% if messages|length %} {% for message in messages %}
{% trans "Info!" %} {{ message }}
{% endfor %} {% endif %}
{% block content %}block=content{% endblock %}
MESSAGE
{% block sidebar %} {% endblock %}
{% endblock %} {% block footer %} {% endblock %}