improve product views (plus temp hacks)

This commit is contained in:
Lance Edgar 2012-07-26 14:04:54 -07:00
parent 36c969c7f8
commit b4193db0f2
2 changed files with 243 additions and 132 deletions

View file

@ -1,7 +1,20 @@
<%inherit file="/products/base.mako" />
<%inherit file="/index.mako" />
<%def name="menu()">
<p>${h.link_to("New Batch from Results", url('products.batch'))}</p>
</%def>
<%def name="title()">Products</%def>
<%def name="head_tags()">
${parent.head_tags()}
<style type="text/css">
div.grid.Product table tbody td.size,
div.grid.Product table tbody td.regular_price,
div.grid.Product table tbody td.sale_price {
padding-right: 6px;
text-align: right;
}
</style>
</%def>
${parent.body()}