forked from awesto/django-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Ordered Items not rendered in Django admin
This bus has been reported here: awesto/cookiecutter-django-shop#27
- Loading branch information
Showing
2 changed files
with
16 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,25 @@ | ||
{% load i18n admin_urls admin_static %} | ||
<div class="inline-group" id="{{ inline_admin_formset.formset.prefix }}-group"> | ||
{% load i18n admin_urls static %} | ||
<div class="js-inline-admin-formset inline-group" | ||
id="{{ inline_admin_formset.formset.prefix }}-group" | ||
data-inline-type="stacked" | ||
data-inline-formset="{{ inline_admin_formset.inline_formset_data }}"> | ||
<fieldset class="module {{ inline_admin_formset.classes }}"> | ||
<h2>{{ inline_admin_formset.opts.verbose_name_plural|capfirst }}</h2> | ||
{{ inline_admin_formset.formset.management_form }} | ||
{{ inline_admin_formset.formset.non_form_errors }} | ||
|
||
{% for inline_admin_form in inline_admin_formset %}<div class="inline-related{% if inline_admin_form.original or inline_admin_form.show_url %} has_original{% endif %}{% if forloop.last %} empty-form last-related{% endif %}" id="{{ inline_admin_formset.formset.prefix }}-{% if not forloop.last %}{{ forloop.counter0 }}{% else %}empty{% endif %}"> | ||
<h3><b>{{ inline_admin_formset.opts.verbose_name|capfirst }}:</b> <span class="inline_label">{% if inline_admin_form.original %}{{ inline_admin_form.original }}{% if inline_admin_form.model_admin.show_change_link and inline_admin_form.model_admin.has_registered_model %} <a href="{% url inline_admin_form.model_admin.opts|admin_urlname:'change' inline_admin_form.original.pk|admin_urlquote %}" class="inlinechangelink">{% trans "Change" %}</a>{% endif %} | ||
{% for inline_admin_form in inline_admin_formset %}<div class="inline-related{% if inline_admin_form.original or inline_admin_form.show_url %} has_original{% endif %}{% if forloop.last and inline_admin_formset.has_add_permission %} empty-form last-related{% endif %}" id="{{ inline_admin_formset.formset.prefix }}-{% if not forloop.last %}{{ forloop.counter0 }}{% else %}empty{% endif %}"> | ||
<h3><b>{{ inline_admin_formset.opts.verbose_name|capfirst }}:</b> <span class="inline_label">{% if inline_admin_form.original %}{{ inline_admin_form.original }}{% if inline_admin_form.model_admin.show_change_link and inline_admin_form.model_admin.has_registered_model %} <a href="{% url inline_admin_form.model_admin.opts|admin_urlname:'change' inline_admin_form.original.pk|admin_urlquote %}" class="{% if inline_admin_formset.has_change_permission %}inlinechangelink{% else %}inlineviewlink{% endif %}">{% if inline_admin_formset.has_change_permission %}{% trans "Change" %}{% else %}{% trans "View" %}{% endif %}</a>{% endif %} | ||
{% else %}#{{ forloop.counter }}{% endif %}</span> | ||
{% if inline_admin_form.show_url %}<a href="{{ inline_admin_form.absolute_url }}">{% trans "View on site" %}</a>{% endif %} | ||
{% if inline_admin_formset.formset.can_delete and inline_admin_form.original %}<span class="delete">{{ inline_admin_form.deletion_field.field }} {{ inline_admin_form.deletion_field.label_tag }}</span>{% endif %} | ||
{% if inline_admin_formset.formset.can_delete and inline_admin_formset.has_delete_permission and inline_admin_form.original %}<span class="delete">{{ inline_admin_form.deletion_field.field }} {{ inline_admin_form.deletion_field.label_tag }}</span>{% endif %} | ||
</h3> | ||
{% if inline_admin_form.form.non_field_errors %}{{ inline_admin_form.form.non_field_errors }}{% endif %} | ||
{% for fieldset in inline_admin_form %} | ||
{% include "shop/admin/includes/fieldset.html" %} | ||
{% endfor %} | ||
{% if inline_admin_form.needs_explicit_pk_field %}{{ inline_admin_form.pk_field.field }}{% endif %} | ||
{{ inline_admin_form.fk_field.field }} | ||
{% if inline_admin_form.fk_field %}{{ inline_admin_form.fk_field.field }}{% endif %} | ||
</div>{% endfor %} | ||
</fieldset> | ||
</div> | ||
|
||
<script type="text/javascript"> | ||
(function($) { | ||
$("#{{ inline_admin_formset.formset.prefix|escapejs }}-group .inline-related").stackedFormset({ | ||
prefix: "{{ inline_admin_formset.formset.prefix|escapejs }}", | ||
deleteText: "{% filter escapejs %}{% trans "Remove" %}{% endfilter %}", | ||
addText: "{% filter escapejs %}{% blocktrans with verbose_name=inline_admin_formset.opts.verbose_name|capfirst %}Add another {{ verbose_name }}{% endblocktrans %}{% endfilter %}" | ||
}); | ||
})(django.jQuery); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters