Files
@ 63f9dc67ab0a
Branch filter:
Location: kallithea/pylons_app/templates/admin/admin.html - annotation
63f9dc67ab0a
827 B
text/html
fixed ini files. Added coment and colored formatter to production
20dc7a5eb748 20dc7a5eb748 d69e19fc2795 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 fec7d0707e72 d69e19fc2795 20dc7a5eb748 20dc7a5eb748 96285f905073 96285f905073 96285f905073 96285f905073 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 d69e19fc2795 20dc7a5eb748 d69e19fc2795 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Repository managment')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Admin',h.url('admin_home'))}
/
</%def>
<%def name="page_nav()">
<ul class="page-nav">
<li>${h.link_to(u'Home',h.url('/'))}</li>
<li class="current">${_('Admin')}</li>
</ul>
</%def>
<%def name="main()">
%if c.admin_user:
<ul class="submenu">
<li>
${h.link_to(u'Repos',h.url('repos'))}
</li>
<li>
${h.link_to(u'Users',h.url('users'))}
</li>
</ul>
<br/>
<div>
<h2>Welcome ${c.admin_username}</h2>
<div id="user_log">
${c.log_data}
</div>
</div>
%else:
<h2>${_('Sorry only admin users can acces this area')}</h2>
%endif
</%def>
|