mirror of
https://github.com/ngfchl/ptools
synced 2023-07-10 13:41:22 +08:00
121 lines
3.8 KiB
HTML
121 lines
3.8 KiB
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n admin_urls static admin_list simpletags %}
|
|
|
|
{% block extrastyle %}
|
|
{{ block.super }}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/changelists.css' %}?_=20180905"/>
|
|
|
|
{% if cl.formset %}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/forms.css' %}"/>
|
|
{% endif %}
|
|
{% if cl.formset or action_form %}
|
|
<script type="text/javascript" src="{% url 'admin:jsi18n' %}"></script>
|
|
{% endif %}
|
|
{{ media.css }}
|
|
{% if not actions_on_top and not actions_on_bottom %}
|
|
<style>
|
|
#changelist table thead th:first-child {
|
|
width: inherit
|
|
}
|
|
</style>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{{ block.super }}
|
|
{{ media.js }}
|
|
{% endblock %}
|
|
|
|
{% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-list{% endblock %}
|
|
|
|
{% if not is_popup %}
|
|
{% block breadcrumbs %}
|
|
<div class="breadcrumbs">
|
|
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
|
› <a
|
|
href="{% url 'admin:app_list' app_label=cl.opts.app_label %}">{{ cl.opts.app_config.verbose_name }}</a>
|
|
› {{ cl.opts.verbose_name_plural|capfirst }}
|
|
</div>
|
|
{% endblock %}
|
|
{% endif %}
|
|
|
|
{% block coltype %}flex{% endblock %}
|
|
{% block content_title %}
|
|
|
|
{% endblock %}
|
|
{% block content %}
|
|
<style>
|
|
#content {
|
|
position: relative;
|
|
}
|
|
|
|
.object-tools {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 20px;
|
|
height: 50px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.object-tools .import_link, .object-tools .export_link {
|
|
color: white !important;
|
|
}
|
|
|
|
</style>
|
|
{% block object-tools %}
|
|
<ul class="object-tools">
|
|
{% block object-tools-items %}
|
|
{% if has_add_permission %}
|
|
{{ block.super }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
<div id="content-main">
|
|
|
|
{% if cl.formset.errors %}
|
|
<p class="errornote">
|
|
{% if cl.formset.total_error_count == 1 %}{% trans "Please correct the error below." %}{% else %}
|
|
{% trans "Please correct the errors below." %}{% endif %}
|
|
</p>
|
|
{{ cl.formset.non_form_errors }}
|
|
{% endif %}
|
|
<div class="module{% if cl.has_filters %} filtered{% endif %}" id="changelist">
|
|
{% block search %}{% search_form cl %}{% endblock %}
|
|
{% block date_hierarchy %}{% date_hierarchy cl %}{% endblock %}
|
|
|
|
<form id="changelist-form" method="post" {% if cl.formset.is_multipart %}
|
|
enctype="multipart/form-data" {% endif %} novalidate>{% csrf_token %}
|
|
<!--Compatible with django 3.2 x-->
|
|
<button style="display:none" name="index"></button>
|
|
{% if cl.formset %}
|
|
<div>{{ cl.formset.management_form }}</div>
|
|
{% endif %}
|
|
|
|
{% block result_list %}
|
|
|
|
{# {% if action_form %}#}
|
|
{% admin_actions %}
|
|
{# {% endif %}#}
|
|
|
|
{% result_list cl %}
|
|
|
|
{% endblock %}
|
|
</form>
|
|
{% block pagination %}{% pagination cl %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(".object-tools").hide().find('li a').each(function () {
|
|
_action.exts.push({
|
|
name: $(this).text(),
|
|
url: $(this).attr('href')
|
|
})
|
|
})
|
|
if (parent.addEvent) {
|
|
parent.addEvent('title', '{% get_verbose_name_plural %}')
|
|
}
|
|
</script>
|
|
{% endblock %}
|