{% extends 'admin/master.html' %} {% import 'velox/lib/forms.html' as forms with context %} {% block body %} {{ super() }}
Make your changes and then click the Save button at the bottom of the form. Alternatively you can exit by clicking Cancel{% if delete_url %} or delete this record by clicking the Delete button{% endif %}.
{% endblock %} {% call forms.form(form=form, action=submit_url(id=object.id)) %} {{ forms.form_fields(form) }} {% call forms.form_controls() %} {{ forms.save_button() }} {% if delete_url_rule %} {{ forms.delete_button(delete_url(id=object.id)) }} {% endif %} {{ forms.cancel_button(cancel_url()) }} {% endcall %} {% endcall %} {% endblock %}