##// END OF EJS Templates
mercurial middleware now returns 500's instead of 404 on errors and 404 when repo not found, added tracebacks
mercurial middleware now returns 500's instead of 404 on errors and 404 when repo not found, added tracebacks

File last commit:

r308:19944fc4 default
r334:6c23e724 default
Show More
admin.html
20 lines | 429 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Administration')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Admin',h.url('admin_home'))}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
${self.submenu('')}
</%def>
<%def name="main()">
<div>
<h2>Welcome ${c.hg_app_user.username}</h2>
<div id="user_log">
${c.log_data}
</div>
</div>
</%def>