view rhodecode/templates/followers/followers.html @ 1280:215a4801bb1e beta

pep8ify + small fixes for followers page + added tooltips for followers
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 23 Apr 2011 17:22:50 +0200
parents cb216757a62d
children f91d3f9b7230
line wrap: on
line source

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

<%def name="title()">
    ${c.repo_name} ${_('Followers')} - ${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;
    ${_('followers')}
</%def>

<%def name="page_nav()">
    ${self.menu('followers')}
</%def>
<%def name="main()">
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    <div class="table">
        <div id="followers">
            ${c.followers_data}
        </div>   
    </div>
</div>    
</%def>