Files @ d2d35cf2b351
Branch filter:

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

Marcin Kuzminski
RhodeCode now has a option to explicitly set forking permissions. ref #508
- changed the way permissons on users groups behave. Now explicit set on user
is more important than permission set on users group
## -*- 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">
	    <div id="user_log">
	        ${c.log_data}
	    </div>
	</div>
</div>
</%def>