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.
62 lines
2.1 KiB
62 lines
2.1 KiB
{% extends "admin/base_site.html" %}
|
|
{% load i18n admin_urls admin_static admin_list bootstrapped_goodies_tags %}
|
|
|
|
|
|
{% 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 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 %}
|
|
|