Files
@ a26f48ad7a8a
Branch filter:
Location: kallithea/pylons_app/templates/admin/permissions/permissions.html - annotation
a26f48ad7a8a
556 B
text/html
fixes issue #16 reimplementation of database repository, for using generic pk instead of repo naming as pk. Which caused to many problems.
Fixed issue when redirecting after repo name change to 404.
Removed update hook from basic app setup
Fixed issue when redirecting after repo name change to 404.
Removed update hook from basic app setup
d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f d982ed8e32d8 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f d982ed8e32d8 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Permissions administration')}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
»
${_('Permissions')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
To implement
</div>
</div>
</%def>
|