
Also remove some u"" style strings within templates, since they appear to be unnecessary.
10 lines
317 B
Mako
10 lines
317 B
Mako
## -*- coding: utf-8 -*-
|
|
<%inherit file="/crud.mako" />
|
|
|
|
<%def name="context_menu_items()">
|
|
<li>${h.link_to("Back to Batch", url('batch.read', uuid=form.fieldset.model.batch.uuid))}</li>
|
|
<li>${h.link_to("Back to Batch Rows", url('batch.rows', uuid=form.fieldset.model.batch.uuid))}</li>
|
|
</%def>
|
|
|
|
${parent.body()}
|
|
|