add (some of) Product CRUD

This commit is contained in:
Lance Edgar 2012-08-07 17:05:45 -07:00
parent da95cb8614
commit 2cbe1a0c44
3 changed files with 25 additions and 4 deletions

View file

@ -0,0 +1,8 @@
<%inherit file="/products/base.mako" />
<%inherit file="/crud.mako" />
<%def name="context_menu_items()">
<p>${h.link_to("Back to Products", url('products'))}</p>
</%def>
${parent.body()}

View file

@ -0,0 +1,2 @@
<%inherit file="/products/crud.mako" />
${parent.body()}