Files @ cbdd583f1e58
Branch filter:

Location: kallithea/rhodecode/templates/admin/admin.html - annotation

Marcin Kuzminski
reverted copy of cached instance:

CPython

changelog
total_time 39.7253162861
average on req 0.993132907152

changesets
total_time 42.5156304836
average on req 0.425156304836

Total: 546 MB

changelog
total_time 35.5851216316
average on req 0.889628040791

changesets
total_time 30.3608012199
average on req 0.303608012199

Total: 475 MB
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Admin journal')} - ${c.rhodecode_name}
</%def>

<%def name="breadcrumbs_links()">
    ${_('Admin 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">
        <script type="text/javascript">
        function show_more_event(){
	        YUE.on(YUD.getElementsByClassName('show_more'),'click',function(e){
	            var el = e.target;
	            YUD.setStyle(YUD.get(el.id.substring(1)),'display','');
	            YUD.setStyle(el.parentNode,'display','none');
	        });
        }
        </script>	
	    <div id="user_log">
	        ${c.log_data}
	    </div>
	</div>
</div>    
</%def>