From c874e879c1f48da48007ca05c1b1ef8dfc8fcb22 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 30 Aug 2019 20:01:49 -0500 Subject: [PATCH] Don't show Delete Row button for executed batch, on jquery mobile site --- tailbone/templates/mobile/master/view_row.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailbone/templates/mobile/master/view_row.mako b/tailbone/templates/mobile/master/view_row.mako index 45d1bc7b..29a014e8 100644 --- a/tailbone/templates/mobile/master/view_row.mako +++ b/tailbone/templates/mobile/master/view_row.mako @@ -11,7 +11,7 @@ ${form.render()|n} ${h.link_to("Edit", url('mobile.{}.edit_row'.format(route_prefix), uuid=instance.batch_uuid, row_uuid=instance.uuid), class_='ui-btn')} % endif -% if master.mobile_rows_deletable and request.has_perm('{}.delete_row'.format(permission_prefix)): +% if master.mobile_rows_deletable and master.row_deletable(row) 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")}