
also try harder to make certain aspects easier to enable/disable via handler, e.g. whether cases should be allowed as quantity input, or expired credits should be a thing etc.
26 lines
1,022 B
Mako
26 lines
1,022 B
Mako
## -*- coding: utf-8; -*-
|
|
<%inherit file="/mobile/master/edit.mako" />
|
|
|
|
<%def name="title()">${index_title} » ${parent_title} » ${instance_title} » Edit</%def>
|
|
|
|
<%def name="page_title()">${h.link_to(index_title, index_url)} » ${h.link_to(parent_title, parent_url)} » ${h.link_to(instance_title, instance_url)} » Edit</%def>
|
|
|
|
## TODO: this should not be necessary, correct?
|
|
## <%def name="buttons()">
|
|
## <br />
|
|
## ${h.submit('create', form.update_label)}
|
|
## ${h.link_to("Cancel", form.cancel_url, class_='ui-btn ui-corner-all')}
|
|
## </%def>
|
|
|
|
<div class="form-wrapper">
|
|
## ${form.render(buttons=capture(self.buttons))|n}
|
|
${form.render()|n}
|
|
</div><!-- form-wrapper -->
|
|
|
|
% if master.mobile_rows_deletable and request.has_perm('{}.delete_row'.format(permission_prefix)):
|
|
${h.form(url('mobile.{}.delete_row'.format(route_prefix), uuid=parent_instance.uuid, row_uuid=row.uuid))}
|
|
${h.csrf_token(request)}
|
|
${h.submit('submit', "Delete this Row")}
|
|
${h.end_form()}
|
|
% endif
|