mirror of https://github.com/interlegis/sigi.git
Marcio Mazza
10 years ago
7 changed files with 283 additions and 82 deletions
@ -1,13 +1,10 @@ |
|||
{% extends "admin/change_list.html" %} |
|||
{% load admin_list i18n reporting_tags %} |
|||
|
|||
{% block object-tools %} |
|||
<ul class="object-tools"> |
|||
<li><a onclick="return showRelatedObjectLookupPopup(this);" href="carrinho/{{query_str}}">Carrinho / Exportar</a></li> |
|||
<li> |
|||
<a href="add/{% if is_popup %}?_popup=1{% endif %}" class="addlink"> |
|||
{% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %} |
|||
</a> |
|||
</li> |
|||
</ul> |
|||
{% block object-tools-items %} |
|||
<li><a class="btn" onclick="return showRelatedObjectLookupPopup(this);" href="carrinho/{{query_str}}"> |
|||
<span class="glyphicon glyphicon-shopping-cart"></span> |
|||
Carrinho / Exportar |
|||
</a></li> |
|||
{{ block.super }} |
|||
{% endblock %} |
@ -0,0 +1,122 @@ |
|||
{% 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-right'>{% 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 %} |
|||
|
|||
|
Loading…
Reference in new issue