Show More
@@ -4,7 +4,7 b'' | |||
|
4 | 4 | <ul> |
|
5 | 5 | %if c.rhodecode_repo.branches.values(): |
|
6 | 6 | %for cnt,branch in enumerate(c.rhodecode_repo.branches.items()): |
|
7 |
<li><div><pre>${h.link_to('%s - %s' % (branch[0],h.short_id(branch[1])),h.url('files_home',repo_name=c.repo_name,revision=branch[ |
|
|
7 | <li><div><pre>${h.link_to('%s - %s' % (branch[0],h.short_id(branch[1])),h.url('files_home',repo_name=c.repo_name,revision=branch[0]))}</pre></div></li> | |
|
8 | 8 | %endfor |
|
9 | 9 | %else: |
|
10 | 10 | <li>${h.link_to(_('There are no branches yet'),'#')}</li> |
@@ -16,7 +16,7 b'' | |||
|
16 | 16 | <ul> |
|
17 | 17 | %if c.rhodecode_repo.tags.values(): |
|
18 | 18 | %for cnt,tag in enumerate(c.rhodecode_repo.tags.items()): |
|
19 |
<li><div><pre>${h.link_to('%s - %s' % (tag[0],h.short_id(tag[1])),h.url('files_home',repo_name=c.repo_name,revision=tag[ |
|
|
19 | <li><div><pre>${h.link_to('%s - %s' % (tag[0],h.short_id(tag[1])),h.url('files_home',repo_name=c.repo_name,revision=tag[0]))}</pre></div></li> | |
|
20 | 20 | %endfor |
|
21 | 21 | %else: |
|
22 | 22 | <li>${h.link_to(_('There are no tags yet'),'#')}</li> |
General Comments 0
You need to be logged in to leave comments.
Login now