fix batch url in row crud template

This commit is contained in:
Lance Edgar 2012-11-27 11:28:09 -08:00
parent 765fa7f949
commit b1faddd33e

View file

@ -1,7 +1,7 @@
<%inherit file="/crud.mako" />
<%def name="context_menu_items()">
<li>${h.link_to("Back to Batch", url('batch', uuid=form.fieldset.model.batch.uuid))}</li>
<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>