diff pylons_app/templates/shortlog/shortlog.html @ 362:558eb7c5028f rhodecode-0.0.0.8.0

version bump to 0.8 hg app 0.8 new template. Add yui flot and graph into summary page. + various tweeks and patches into look of application
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 24 Jul 2010 02:17:48 +0200
parents 05b212954275
children
line wrap: on
line diff
--- a/pylons_app/templates/shortlog/shortlog.html	Sat Jul 24 00:53:43 2010 +0200
+++ b/pylons_app/templates/shortlog/shortlog.html	Sat Jul 24 02:17:48 2010 +0200
@@ -2,23 +2,32 @@
 <%inherit file="/base/base.html"/>
 
 <%def name="title()">
-    ${_('Repository managment')}
+    ${_('Shortlog')}
 </%def>
-<%def name="breadcrumbs()">
+
+
+<%def name="breadcrumbs_links()">
     ${h.link_to(u'Home',h.url('/'))}
-    / 
-    ${h.link_to(c.repo_name,h.url('shortlog_home',repo_name=c.repo_name))}
-    /
+    &raquo; 
+    ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
+    &raquo;
     ${_('shortlog')}
 </%def>
+
 <%def name="page_nav()">
-	${self.menu('shortlog')}     
+    ${self.menu('shortlog')}
 </%def>
 <%def name="main()">
-
-    <h2 class="no-link no-border">${_('Shortlog')}</h2>
-
-	<div id="shortlog_data">
-		${c.shortlog_data}
-	</div>
-</%def>    
\ No newline at end of file
+<div class="box">
+    <!-- box / title -->
+    <div class="title">
+        ${self.breadcrumbs()}
+    </div>
+    <!-- end box / title -->
+    <div class="table">
+	    <div id="shortlog_data">
+	        ${c.shortlog_data}
+	    </div>
+    </div>
+</div>    
+</%def>
\ No newline at end of file