view pylons_app/templates/admin/admin.html @ 503:3d6d548ad3cc

Added user action mapper to map push to changeset. made exception in simplehg python 2.5 ready
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 24 Sep 2010 18:13:29 +0200
parents 558eb7c5028f
children
line wrap: on
line source

## -*- 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>