diff rhodecode/templates/followers/followers.html @ 1279:cb216757a62d beta

#179 Added followers page
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 23 Apr 2011 17:11:12 +0200
parents
children 215a4801bb1e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rhodecode/templates/followers/followers.html	Sat Apr 23 17:11:12 2011 +0200
@@ -0,0 +1,33 @@
+## -*- 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> 
\ No newline at end of file