view pylons_app/templates/shortlog/shortlog.html @ 357:ebdd1a89cdd9

Added extra validation in creating users. new style errors for users
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 24 Jul 2010 00:46:29 +0200
parents 05b212954275
children 558eb7c5028f
line wrap: on
line source

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

<%def name="title()">
    ${_('Repository managment')}
</%def>
<%def name="breadcrumbs()">
    ${h.link_to(u'Home',h.url('/'))}
    / 
    ${h.link_to(c.repo_name,h.url('shortlog_home',repo_name=c.repo_name))}
    /
    ${_('shortlog')}
</%def>
<%def name="page_nav()">
	${self.menu('shortlog')}     
</%def>
<%def name="main()">

    <h2 class="no-link no-border">${_('Shortlog')}</h2>

	<div id="shortlog_data">
		${c.shortlog_data}
	</div>
</%def>