update category views

This commit is contained in:
Lance Edgar 2012-10-09 16:05:26 -07:00
parent fd19661132
commit 1c280f8062
6 changed files with 54 additions and 37 deletions

View file

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

View file

@ -1,10 +1,12 @@
<%inherit file="/categories/base.mako" />
<%inherit file="/crud.mako" />
<%def name="crud_name()">Category</%def>
<%def name="context_menu_items()">
<li>${h.link_to("Back to Categories", url('categories.list'))}</li>
<li>${h.link_to("Back to Categories", url('categories'))}</li>
% if form.readonly:
<li>${h.link_to("Edit this Category", url('category.update', uuid=form.fieldset.model.uuid))}</li>
% elif form.updating:
<li>${h.link_to("View this Category", url('category.read', uuid=form.fieldset.model.uuid))}</li>
% endif
</%def>
${parent.body()}

View file

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

View file

@ -1,11 +1,10 @@
<%inherit file="/categories/base.mako" />
<%inherit file="/index.mako" />
<%inherit file="/grid.mako" />
<%def name="title()">Categories</%def>
<%def name="context_menu_items()">
% if request.has_perm('categories.create'):
<li>${h.link_to("Create a new Category", url('category.new'))}</li>
<li>${h.link_to("Create a new Category", url('category.create'))}</li>
% endif
</%def>

View file

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