view pylons_app/templates/admin/admin.html @ 260:6ada8c223374

made global funcion to clean repo names, and remove all special chars from the name. Switched message slug into webhelpers function
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 06 Jun 2010 21:54:54 +0200
parents b18f89d6d17f
children 19944fc4f872
line wrap: on
line source

## -*- 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.admin_username}</h2>
		    <div id="user_log">
				${c.log_data}
			</div>
    </div>
</%def>