##// END OF EJS Templates
Added application settings, are now customizable from database...
Added application settings, are now customizable from database fixed all instances of sqlachemy to be removed() after execution.

File last commit:

r308:19944fc4 default
r350:664a5b8c 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>