##// END OF EJS Templates
made action logger more global, to be used in other places to log other actions....
made action logger more global, to be used in other places to log other actions. cleaned unused import in simpleHG, fixed little logging in hooks

File last commit:

r362:558eb7c5 rhodecode-0.0.0.8.0 default
r536:39203995 default
Show More
admin.html
27 lines | 506 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Administration')}
</%def>
<%def name="breadcrumbs_links()">
${_('Admin dashboard - journal')}
</%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">
<div id="user_log">
${c.log_data}
</div>
</div>
</div>
</%def>