tailbone/rattail/pyramid/templates/batches/details.mako
2012-04-21 12:48:06 -05:00

13 lines
398 B
Mako

<%inherit file="/batches/base.mako" />
<%inherit file="/index.mako" />
<%def name="title()">Batch : ${batch.name}</%def>
<%def name="menu()">
<p>${h.link_to("Back to Batches", url('batches.list'))}</p>
<p>${h.link_to("View Batch Properties", url('batch.edit', uuid=batch.uuid))}</p>
<p>${h.link_to("Execute this Batch", url('batch.execute', uuid=batch.uuid))}</p>
</%def>
${parent.body()}