13 lines
398 B
Mako
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()}
|
|
|