diff pylons_app/templates/changelog/changelog.html @ 527:6d44d3862ec4

fixes #36, removed username, name, lastname, minimal length restrictions, fixed branches/tags icons in changelog and made them active links
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 30 Sep 2010 12:44:06 +0200
parents 804a14e086dc
children 3a567e329fb6
line wrap: on
line diff
--- a/pylons_app/templates/changelog/changelog.html	Thu Sep 30 10:31:37 2010 +0200
+++ b/pylons_app/templates/changelog/changelog.html	Thu Sep 30 12:44:06 2010 +0200
@@ -76,9 +76,11 @@
 										</div>
 									%endfor
 								<span class="logtags">
-									<span class="branchtag">${cs.branch}</span>
+									<span class="branchtag" title="${'%s %s' % (_('branch'),cs.branch)}">
+									${h.link_to(cs.branch,h.url('files_home',repo_name=c.repo_name,revision=cs.short_id))}</span>
 									%for tag in cs.tags:
-										<span class="tagtag">${tag}</span>
+										<span class="tagtag"  title="${'%s %s' % (_('tag'),tag)}">
+										${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=cs.short_id))}</span>
 									%endfor
 								</span>																	
 						</div>