28 lines
609 B
Plaintext
28 lines
609 B
Plaintext
![]() |
<%inherit file="/base.mako" />
|
||
|
|
||
|
<%def name="title()">Create Products Batch</%def>
|
||
|
|
||
|
<%def name="context_menu_items()">
|
||
|
<li>${h.link_to("Back to Products", url('products'))}</li>
|
||
|
</%def>
|
||
|
|
||
|
<div class="form">
|
||
|
|
||
|
${h.form(request.current_route_url())}
|
||
|
|
||
|
<div class="field-wrapper">
|
||
|
<label for="provider">Batch Type</label>
|
||
|
<div class="field">
|
||
|
${h.select('provider', None, providers)}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="buttons">
|
||
|
${h.submit('create', "Create Batch")}
|
||
|
<button type="button" onclick="location.href = '${url('products')}';">Cancel</button>
|
||
|
</div>
|
||
|
|
||
|
${h.end_form()}
|
||
|
|
||
|
</div>
|