mirror of
https://github.com/jazzband/django-authority.git
synced 2026-05-19 13:01:07 +00:00
58 lines
2.1 KiB
HTML
58 lines
2.1 KiB
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n admin_modify admin_static %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script type="text/javascript" src="{% url 'admin:jsi18n' %}"></script>
|
|
{{ media }}
|
|
{% endblock %}
|
|
|
|
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/forms.css" %}"/>{% endblock %}
|
|
|
|
{% block coltype %}{% if ordered_objects %}colMS{% else %}colM{% endif %}{% endblock %}
|
|
|
|
{% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %}
|
|
|
|
{% block breadcrumbs %}{% if not is_popup %}
|
|
<div class="breadcrumbs">
|
|
<a href="../../">{% trans "Home" %}</a> ›
|
|
<a href="../">{{ app_label|capfirst|escape }}</a> ›
|
|
<a href="./">{{ opts.verbose_name_plural|capfirst }}</a> ›
|
|
{% trans "Permissions" %}
|
|
</div>
|
|
{% endif %}{% endblock %}
|
|
|
|
{% block content %}<div id="content-main">
|
|
<form action="{{ form_url }}" method="post" id="{{ opts.module_name }}_form">
|
|
{% csrf_token %}
|
|
<div>
|
|
{% if is_popup %}<input type="hidden" name="_popup" value="1" />{% endif %}
|
|
{% if save_on_top %}{% submit_row %}{% endif %}
|
|
{% if errors %}
|
|
<p class="errornote">
|
|
{% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
|
|
</p>
|
|
<ul class="errorlist">{% for error in adminform.form.non_field_errors %}<li>{{ error }}</li>{% endfor %}</ul>
|
|
{% endif %}
|
|
|
|
{% for fieldset in adminform %}
|
|
{% include "admin/includes/fieldset.html" %}
|
|
{% endfor %}
|
|
|
|
{% for inline_admin_formset in inline_admin_formsets %}
|
|
{% include inline_admin_formset.opts.template %}
|
|
{% endfor %}
|
|
|
|
{% block after_related_objects %}{% endblock %}
|
|
|
|
<div class="submit-row">
|
|
<input type="submit" value="{% trans 'Save' %}" class="default" name="_save_action" {{ onclick_attrib }}/>
|
|
</div>
|
|
|
|
</div>
|
|
{% for obj in queryset %}
|
|
<input type="hidden" name="{{ action_checkbox_name }}" value="{{ obj.pk }}" />
|
|
{% endfor %}
|
|
<input type="hidden" name="action" value="edit_permissions" />
|
|
<input type="hidden" name="post" value="yes" />
|
|
</form></div>
|
|
{% endblock %}
|