edbob/edbob/pyramid/templates/roles/index.mako
2012-11-12 07:41:03 -08:00

11 lines
248 B
Mako

<%inherit file="/grid.mako" />
<%def name="title()">Roles</%def>
<%def name="context_menu_items()">
% if request.has_perm('roles.create'):
<li>${h.link_to("Create a new Role", url('role.create'))}</li>
% endif
</%def>
${parent.body()}