
The following changes are included: - Added support for GPC data type. - Added eager import of ``rattail.sil`` in ``before_render`` hook. - Removed ``rattail.pyramid.util`` module. - Added initial batch support: views, templates, creation from Product grid. - Added batch params template for ``PrintLabels`` provider. - Added support for ``rattail.LabelProfile`` class. - Improved Product grid to include filter/sort on Vendor.
20 lines
411 B
Mako
20 lines
411 B
Mako
<%inherit file="/batches/params.mako" />
|
|
|
|
<%def name="batch_params()">
|
|
|
|
<div class="field-wrapper">
|
|
<label for="profile">Label Type</label>
|
|
<div class="field">
|
|
${h.select('profile', None, label_profiles)}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field-wrapper">
|
|
<label for="quantity">Quantity</label>
|
|
<div class="field">${h.text('quantity', value=1)}</div>
|
|
</div>
|
|
|
|
</%def>
|
|
|
|
${parent.body()}
|
|
|