{% extends "admin/base_site.html" %} {% comment %} Template edited from grappelli original admin/index.html to remove

and with apps ordered alphabetically {% endcomment %} {% load i18n adminmedia grp_tags log %} {% block javascripts %} {{ block.super }} {% endblock %} {% block breadcrumbs %}{% endblock %} {% block content_title %}{% if title %}

{{ title }}

{% endif %}{% endblock %} {% block content %}
{% if app_list %} {% comment %} Changed {% for app in app_list %} to order the apps alphabetically {% endcomment %} {% for app in app_list|dictsort:"models.0.name" %}
{% comment %} Commented out app title {% endcomment %} {% for model in app.models %}
{% if model.perms.change %}{{ model.name }}{% else %}{{ model.name }}{% endif %}
{% endfor %}
{% endfor %} {% else %}

{% trans "You don“t have permission to edit anything." %}

{% endif %}

{% trans 'Recent Actions' %}

{% trans 'My Actions' %}

{% get_admin_log 10 as admin_log for_user user %} {% if not admin_log %}

{% trans 'None available' %}

{% else %} {% endif %}
{% endblock %}