{% extends "admin/base_site.html" %} {% load i18n static %} {% block main_content %}

{% trans "Database Management" %}

{% if app_list %}

{% blocktrans %} Be careful when making changes to the database. Not all data is safe to edit in production. {% endblocktrans %}

{% for app in app_list %}

{{app.name}}

    {% for model in app.models %}
  • {% if model.add_url %} {% endif %} {% if model.admin_url %} {{model.name}} {% else %} {{model.name}} {% endif %}
  • {% endfor %}
{% endfor %}
{% else %}

{% blocktrans %} You don't have permission to edit anything in the database. {% endblocktrans %}

{% endif %} {% endblock main_content %}