
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.
11 lines
284 B
Mako
11 lines
284 B
Mako
<%inherit file="/grid.mako" />
|
|
|
|
<%def name="title()">Label Profiles</%def>
|
|
|
|
<%def name="context_menu_items()">
|
|
% if request.has_perm('label_profiles.create'):
|
|
<li>${h.link_to("Create a new Label Profile", url('label_profile.create'))}</li>
|
|
% endif
|
|
</%def>
|
|
|
|
${parent.body()}
|
|
|