15 lines
441 B
Mako
15 lines
441 B
Mako
<%inherit file="/batches/base.mako" />
|
|
<%inherit file="/crud.mako" />
|
|
|
|
<%def name="crud_name()">Batch</%def>
|
|
|
|
<%def name="menu()">
|
|
<p>${h.link_to("Back to Batches", url('batch.list'))}</p>
|
|
% if fieldset.edit:
|
|
<p>${h.link_to("View Batch Details", url('batch.details', uuid=fieldset.model.uuid))}</p>
|
|
<p>${h.link_to("Execute this Batch", url('batch.execute', uuid=fieldset.model.uuid))}</p>
|
|
% endif
|
|
</%def>
|
|
|
|
${parent.body()}
|
|
|