Show More
@@ -1,50 +1,49 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | <li> |
|
3 | 3 | ${h.link_to('%s (%s)' % (_('Branches'),len(c.rhodecode_repo.branches.values()),),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')} |
|
4 | 4 | <ul> |
|
5 | 5 | %if c.rhodecode_repo.branches.values(): |
|
6 | 6 | %for cnt,branch in enumerate(c.rhodecode_repo.branches.items()): |
|
7 | 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] if '/' not in branch[0] else branch[1]), at=branch[0]))}</pre></div></li> |
|
8 | 8 | %endfor |
|
9 | 9 | %else: |
|
10 | 10 | <li>${h.link_to(_('There are no branches yet'),'#')}</li> |
|
11 | 11 | %endif |
|
12 | 12 | </ul> |
|
13 | 13 | </li> |
|
14 | 14 | %if c.rhodecode_repo.closed_branches.values(): |
|
15 | 15 | <li> |
|
16 | 16 | ${h.link_to('%s (%s)' % (_('Closed Branches'),len(c.rhodecode_repo.closed_branches.values()),),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')} |
|
17 | 17 | <ul> |
|
18 | <li><a>-</a></li> | |
|
19 | 18 | %for cnt,branch in enumerate(c.rhodecode_repo.closed_branches.items()): |
|
20 | 19 | <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] if '/' not in branch[0] else branch[1]), at=branch[0]))}</pre></div></li> |
|
21 | 20 | %endfor |
|
22 | 21 | </ul> |
|
23 | 22 | </li> |
|
24 | 23 | %endif |
|
25 | 24 | <li> |
|
26 | 25 | ${h.link_to('%s (%s)' % (_('Tags'),len(c.rhodecode_repo.tags.values()),),h.url('tags_home',repo_name=c.repo_name),class_='tags childs')} |
|
27 | 26 | <ul> |
|
28 | 27 | %if c.rhodecode_repo.tags.values(): |
|
29 | 28 | %for cnt,tag in enumerate(c.rhodecode_repo.tags.items()): |
|
30 | 29 | <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] if '/' not in tag[0] else tag[1]), at=tag[0]))}</pre></div></li> |
|
31 | 30 | %endfor |
|
32 | 31 | %else: |
|
33 | 32 | <li>${h.link_to(_('There are no tags yet'),'#')}</li> |
|
34 | 33 | %endif |
|
35 | 34 | </ul> |
|
36 | 35 | </li> |
|
37 | 36 | %if c.rhodecode_repo.alias == 'hg': |
|
38 | 37 | <li> |
|
39 | 38 | ${h.link_to('%s (%s)' % (_('Bookmarks'),len(c.rhodecode_repo.bookmarks.values()),),h.url('bookmarks_home',repo_name=c.repo_name),class_='bookmarks childs')} |
|
40 | 39 | <ul> |
|
41 | 40 | %if c.rhodecode_repo.bookmarks.values(): |
|
42 | 41 | %for cnt,book in enumerate(c.rhodecode_repo.bookmarks.items()): |
|
43 | 42 | <li><div><pre>${h.link_to('%s - %s' % (book[0],h.short_id(book[1])),h.url('files_home',repo_name=c.repo_name,revision=(book[0] if '/' not in book[0] else book[1]), at=book[0]))}</pre></div></li> |
|
44 | 43 | %endfor |
|
45 | 44 | %else: |
|
46 | 45 | <li>${h.link_to(_('There are no bookmarks yet'),'#')}</li> |
|
47 | 46 | %endif |
|
48 | 47 | </ul> |
|
49 | 48 | </li> |
|
50 | 49 | %endif |
General Comments 0
You need to be logged in to leave comments.
Login now