2014-07-23 23:35:33 -05:00
|
|
|
## -*- coding: utf-8 -*-
|
2012-08-29 13:37:17 -05:00
|
|
|
<%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")}
|
2016-02-12 20:44:41 -06:00
|
|
|
${h.link_to("Cancel", url('products'), class_='button')}
|
2012-08-29 13:37:17 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
${h.end_form()}
|
|
|
|
|
|
|
|
</div>
|