13 lines
562 B
Mako
13 lines
562 B
Mako
## -*- coding: utf-8; -*-
|
|
<%inherit file="/mobile/master/view.mako" />
|
|
|
|
<%def name="title()">${index_title} » ${parent_title} » ${instance_title}</%def>
|
|
|
|
<%def name="page_title()">${h.link_to(index_title, index_url)} » ${h.link_to(parent_title, parent_url)} » ${instance_title}</%def>
|
|
|
|
${parent.body()}
|
|
|
|
% if master.mobile_rows_editable and instance_editable and request.has_perm('{}.edit_row'.format(permission_prefix)):
|
|
${h.link_to("Edit", url('mobile.{}.edit'.format(row_route_prefix), uuid=instance.uuid), class_='ui-btn')}
|
|
% endif
|