view pylons_app/templates/tags/tags.html @ 282:237470e64bb8

switched filters into webhelpers for easy of usage. Rewrite of html to use predefined templates from branches shortlog tags, for DRY usage. Added info messages about empty branches/tags etc.
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 13 Jun 2010 23:56:16 +0200
parents 373ddb868bd6
children 558eb7c5028f
line wrap: on
line source

<%inherit file="/base/base.html"/>
<%def name="title()">
    ${_('Tags')}
</%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))}
    /
    ${_('tags')}
</%def>
<%def name="page_nav()">
	${self.menu('tags')}    
</%def>
<%def name="main()">

    <h2 class="no-link no-border">${_('Tags')}</h2>
	<%include file='tags_data.html'/>

</%def>