view pylons_app/templates/branches/branches.html @ 318:fdf9f6ee5217

Implemented permissions into hg app, secured admin controllers, templates and repository specific controllers
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 29 Jun 2010 20:45:03 +0200
parents 237470e64bb8
children 558eb7c5028f
line wrap: on
line source

<%inherit file="/base/base.html"/>
<%def name="title()">
    ${_('Branches')}
</%def>
<%def name="breadcrumbs()">
    ${h.link_to(u'Home',h.url('/'))}
    / 
    ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
    /
    ${_('branches')}
</%def>
<%def name="page_nav()">
	${self.menu('branches')}    
</%def>
<%def name="main()">
    <h2 class="no-link no-border">${_('Branches')}</h2>
	<%include file='branches_data.html'/>
</%def>