Add basic support for "mobile edit" of records

specifically need to allow this for Customer records, for one app
This commit is contained in:
Lance Edgar 2019-02-19 17:10:02 -06:00
parent 37a8bfd6f5
commit b0b551af82
8 changed files with 88 additions and 22 deletions

View file

@ -42,3 +42,7 @@ ${form.render()|n}
<br />
${grid.render_complete()|n}
% endif
% if master.mobile_editable and instance_editable and request.has_perm('{}.edit'.format(permission_prefix)):
${h.link_to("Edit This", url('mobile.{}.edit'.format(route_prefix), uuid=instance.uuid), class_='ui-btn ui-corner-all')}
% endif