Login

Admin Save and view next button html

Author:
ungenio41
Posted:
May 2, 2010
Language:
HTML/template
Version:
Not specified
Score:
2 (after 2 ratings)

See link for description.

Note: Requires Django 1.2.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
{% extends "admin/change_form.html" %}
{% load i18n %}
{% block content %}
{{ block.super }}
<script type="text/javascript">//<![CDATA[
    (function($){
        $('<input type="submit" value="{% trans 'Save and view next' %}" name="_viewnext" />')
        .prependTo('div.submit-row');
    })(django.jQuery);
//]]></script>
{% endblock %}

More like this

  1. Bootstrap Accordian by Netplay4 5 years, 2 months ago
  2. Bootstrap theme for django-endless-pagination? by se210 8 years, 2 months ago
  3. Bootstrap theme for django-endless-pagination? by se210 8 years, 2 months ago
  4. Reusable form template with generic view by roldandvg 8 years, 3 months ago
  5. Pagination Django with Boostrap by guilegarcia 8 years, 5 months ago

Comments

deadbeef404 (on December 7, 2010):

Cheers for this (and the other related snippet)

#

ffsffd (on July 6, 2011):

you can also override admin/submit_line.html

{% if show_save %}<input type="submit" value="{% trans 'Save and view next' %}" name="_viewnext" {{ onclick_attrib }}/> <input type="submit" value="{% trans 'Save' %}" class="default" name="_save" {{ onclick_attrib }}/&gt{% endif %}

unfortunately this template can't be overriden on per app model

#

Please login first before commenting.