src/p4l/templates/admin/app_index.html
author ymh <ymh.work@gmail.com>
Fri, 11 Oct 2013 11:46:18 +0200
changeset 145 7c6fe1dab213
permissions -rw-r--r--
Add a screen in the admin to launch commands. Fix bug #4 (https://github.com/IRI-Research/plan4learning/issues/4).

{% extends "admin:admin/index.html" %}
{% load i18n %}

{% if not is_popup %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
&rsaquo;
{% for app in app_list %}
{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
{% endfor %}
</div>
{% endblock %}
{% endif %}

{% block sidebar %}{% endblock %}