view rhodecode/templates/tags/tags.html @ 1441:b596a0e63466 beta

Fixing a small error in the repo settings screen The 'Add another member' option didn't work in 1.2 beta, as the field was renamed from `perm_new_user_name` to `perm_new_member_name`
author Ankit Solanki <ankit.solanki@gmail.com>
date Tue, 09 Aug 2011 12:59:33 +0530
parents a1ec653f5f95
children 713315371e03
line wrap: on
line source

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

<%def name="title()">
    ${c.repo_name} ${_('Tags')} - ${c.rhodecode_name}
</%def>


<%def name="breadcrumbs_links()">
    ${h.link_to(u'Home',h.url('/'))}
    &raquo; 
    ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
    &raquo;
    ${_('tags')}
</%def>

<%def name="page_nav()">
    ${self.menu('tags')}
</%def>
<%def name="main()">
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    <div class="table">
        <%include file='tags_data.html'/>
    </div>
</div>    
</%def>