12 lines
408 B
Mako
12 lines
408 B
Mako
<%inherit file="/crud.mako" />
|
|
|
|
<%def name="context_menu_items()">
|
|
<li>${h.link_to("Back to Vendors", url('vendors'))}</li>
|
|
% if form.readonly:
|
|
<li>${h.link_to("Edit this Vendor", url('vendor.update', uuid=form.fieldset.model.uuid))}</li>
|
|
% elif form.updating:
|
|
<li>${h.link_to("View this Vendor", url('vendor.read', uuid=form.fieldset.model.uuid))}</li>
|
|
% endif
|
|
</%def>
|
|
|
|
${parent.body()}
|
|
|