##// END OF EJS Templates
Static files for production fixed...
Static files for production fixed Error handler for debug on, added admin auth function authenticates only admins changed creation of db

File last commit:

r45:a886f5eb default
r46:9db77827 default
Show More
admin.html
63 lines | 1.6 KiB | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="base/base.html"/>
<%def name="get_form_error(element)">
%if type(c.form_errors) == dict:
%if c.form_errors.get(element,False):
<span class="error-message">
${c.form_errors.get(element,'')}
</span>
%endif
%endif
</%def>
<%def name="title()">
${_('Repository managment')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(u'Admin',h.url('admin_home'))}
</%def>
<%def name="page_nav()">
<li>${h.link_to(u'Home',h.url('/'))}</li>
<li class="current">${_('Admin')}</li>
</%def>
<%def name="main()">
%if c.admin_user:
<ul class="submenu">
<li>
${h.link_to(u'Repos managment',h.url('admin_repos_manage'))}
</li>
<li>
${h.link_to(u'Users managment',h.url('admin_users_manage'))}
</li>
</ul>
<br/>
<div>
<h2>Hi !</h2>
</div>
%else:
<div>
<br />
<h2>${_('Login')}</h2>
${h.form(h.url.current())}
<table>
<tr>
<td>${_('Username')}</td>
<td>${h.text('username')}</td>
<td>${get_form_error('username')} </td>
</tr>
<tr>
<td>${_('Password')}</td>
<td>${h.password('password')}</td>
<td>${get_form_error('password')}</td>
</tr>
<tr>
<td></td>
<td>${h.submit('login','login')}</td>
</tr>
</table>
${h.end_form()}
</div>
%endif
</%def>