src/p4l/templates/admin/app_index.html
author ymh <ymh.work@gmail.com>
Mon, 02 Dec 2013 23:26:46 +0100
changeset 159 dbc7cce33ace
parent 145 7c6fe1dab213
permissions -rw-r--r--
check that the value returned is an url. This effectively close bug #13, but really is a hack where the value should be tested to belong to a given thesaurus.

{% 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 %}