mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
3.8 KiB
123 lines
3.8 KiB
{% extends "admin/base_site.html" %}
|
|
{% load i18n admin_urls admin_static admin_list bootstrapped_goodies_tags %}
|
|
|
|
{% block extrastyle %}
|
|
{{ block.super }}
|
|
<link rel="stylesheet" type="text/css" href="{% static "admin/css/changelists.css" %}" />
|
|
{% if cl.formset %}
|
|
<link rel="stylesheet" type="text/css" href="{% static "admin/css/forms.css" %}" />
|
|
{% endif %}
|
|
{% if cl.formset or action_form %}
|
|
{% url 'admin:jsi18n' as jsi18nurl %}
|
|
<script type="text/javascript" src="{{ jsi18nurl|default:'../../jsi18n/' }}"></script>
|
|
{% endif %}
|
|
{{ media.css }}
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{{ block.super }}
|
|
{{ media.js }}
|
|
{% if action_form %}{% if actions_on_top or actions_on_bottom %}
|
|
<script type="text/javascript">
|
|
(function($) {
|
|
$(document).ready(function($) {
|
|
$("tr input.action-select").actions();
|
|
});
|
|
})(django.jQuery);
|
|
</script>
|
|
{% endif %}{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block bodyclass %}_change-list{% endblock %}
|
|
|
|
{% block coltype %}flex{% endblock %}
|
|
|
|
{% block object-tools %}
|
|
|
|
<ul class="object-tools pull-left nav nav-pills">
|
|
{% block object-tools-items %}
|
|
{% if has_add_permission %}
|
|
<li>
|
|
{% url cl.opts|admin_urlname:'add' as add_url %}
|
|
<a href="{% add_preserved_filters add_url is_popup %}">
|
|
<span class="glyphicon glyphicon-plus"></span> {% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endblock %}
|
|
</ul>
|
|
|
|
{% if cl.has_filters %}
|
|
<ul class="nav navbar-nav pull-right">
|
|
<li class="dropdown">
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{% trans 'Filter' %} <span class="caret"></span></a>
|
|
<ul class="dropdown-menu pull-right">
|
|
{% for spec in cl.filter_specs %}
|
|
{% admin_list_filter cl spec %}
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
{% endif %}
|
|
{% block search %}{% search_form cl %}{% endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form class="" id="changelist-form" action="" method="post"{% if cl.formset.is_multipart %} enctype="multipart/form-data"{% endif %}>{% csrf_token %}
|
|
|
|
{% if cl.formset.errors %}
|
|
<div class="alert alert-danger">
|
|
<p class="errornote">
|
|
{% blocktrans count cl.formset.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
|
|
</p>
|
|
{{ cl.formset.non_form_errors }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
{% with app_name=cl.opts.module_name|lower|slugify %}
|
|
{% render_with_template_if_exist cl.opts.app_label|lower|add:"/admin_app_"|add:app_name|add:"_description.html" "" %}
|
|
{% endwith %}
|
|
|
|
{% if action_form and actions_on_top and cl.full_result_count %}
|
|
<div class='pull-left'>{% admin_actions %}</div>
|
|
{% endif %}
|
|
|
|
<div id="content-main">
|
|
<div class="module{% if cl.has_filters %} filtered{% endif %}" id="_changelist">
|
|
{% block date_hierarchy %}
|
|
{% date_hierarchy cl %}
|
|
{% endblock %}
|
|
|
|
{% if cl.formset %}
|
|
<div>{{ cl.formset.management_form }}</div>
|
|
{% endif %}
|
|
|
|
{% block result_list %}
|
|
{% result_list cl %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
{# {% if cl.formset and cl.result_count %} #}
|
|
<div class="navbar navbar-default">
|
|
<div class="navbar-inner">
|
|
<div class="navbar-form pull-left">
|
|
{% if action_form and actions_on_bottom and cl.full_result_count %}
|
|
{% admin_actions %}
|
|
{% endif %}
|
|
</div>
|
|
<div class="navbar-form pull-right">
|
|
<input type="submit" name="_save" class="btn btn-primary default" value="{% trans 'Save' %}"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{# {% endif %} #}
|
|
|
|
{% block pagination %}
|
|
{% pagination cl %}
|
|
{% endblock %}
|
|
</form>
|
|
{% endblock %}
|
|
|
|
|
|
|