initial users/roles/perms admin stuff

This commit is contained in:
Lance Edgar 2012-04-21 12:45:58 -05:00
parent 02d4cfc6c5
commit ba94a015a6
24 changed files with 1061 additions and 110 deletions

View file

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

View file

@ -0,0 +1,10 @@
<%inherit file="/users/base.mako" />
<%inherit file="/index.mako" />
<%def name="title()">Users</%def>
<%def name="menu()">
<p>${h.link_to("Create a new User", url('user.new'))}</p>
</%def>
${parent.body()}

View file

@ -0,0 +1,10 @@
<%inherit file="/users/base.mako" />
<%inherit file="/crud.mako" />
<%def name="crud_name()">User</%def>
<%def name="menu()">
<p>${h.link_to("Back to Users", url('users.list'))}</p>
</%def>
${parent.body()}