/django/contrib/admin/templates/mako/admin/submit_line.html

https://code.google.com/p/mango-py/ · HTML · 29 lines · 23 code · 6 blank · 0 comment · 0 complexity · c1a14930dabe213e67a7691f4bd3a675 MD5 · raw file

  1. <%def name="submit_line(values)">
  2. <div class="submit-row"
  3. % if is_popup:
  4. style="overflow: auto;"
  5. % endif
  6. >
  7. % if values.get('show_save',False):
  8. <input type="submit" value="${trans('Save')}" class="default" name="_save" ${values['onclick_attrib']}/>
  9. % endif
  10. % if values.get('show_delete_link',False):
  11. <p class="deletelink-box"><a href="delete/" class="deletelink">${trans("Delete")}</a></p>
  12. % endif
  13. % if values.get('show_save_as_new',False):
  14. <input type="submit" value="${trans('Save as new')}" name="_saveasnew" ${values['onclick_attrib']}/>
  15. % endif
  16. % if values.get('show_save_and_add_another',False):
  17. <input type="submit" value="${trans('Save and add another')}" name="_addanother" ${values['onclick_attrib']} />
  18. % endif
  19. % if values.get('show_save_and_continue',False):
  20. <input type="submit" value="${trans('Save and continue editing')}" name="_continue" ${values['onclick_attrib']}/>
  21. % endif
  22. </div>
  23. </%def>