{% extends "manage/base.html" %} {% load i18n breadcrumbs %} {% block breadcrumbs %} {% breadcrumbs "Templates:" %} {% endblock %} {% block content %}

{% trans "Templates stored in Presentation Layer" %}

{% if template_list %} {% for tpl in template_list %} {% endfor %}
{% trans "Name" %}{% trans "Creation date" %}{% trans "Last changed" %}
{{ tpl.name }} {{ tpl.creation_date }} {{ tpl.last_changed }}
{% else %}

{% trans "There are no templates managed yet" %}

{% endif %} {% endblock %}