##// END OF EJS Templates
Don't do git pull on remote repos since they are bare now, we need to use git fetch on them
Don't do git pull on remote repos since they are bare now, we need to use git fetch on them

File last commit:

r1888:f91d3f9b beta
r2383:e576410f beta
Show More
switch_to_list.html
39 lines | 1.7 KiB | text/html | HtmlLexer
White-space cleanup
r1888 ## -*- coding: utf-8 -*-
lazy load of branches and tags menu...
r1608 <li>
${h.link_to('%s (%s)' % (_('branches'),len(c.rhodecode_repo.branches.values()),),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')}
<ul>
%if c.rhodecode_repo.branches.values():
%for cnt,branch in enumerate(c.rhodecode_repo.branches.items()):
Implements #304...
r1770 <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[1]))}</pre></div></li>
lazy load of branches and tags menu...
r1608 %endfor
%else:
<li>${h.link_to(_('There are no branches yet'),'#')}</li>
%endif
White-space cleanup
r1888 </ul>
lazy load of branches and tags menu...
r1608 </li>
<li>
${h.link_to('%s (%s)' % (_('tags'),len(c.rhodecode_repo.tags.values()),),h.url('tags_home',repo_name=c.repo_name),class_='tags childs')}
<ul>
%if c.rhodecode_repo.tags.values():
%for cnt,tag in enumerate(c.rhodecode_repo.tags.items()):
Implements #304...
r1770 <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[1]))}</pre></div></li>
lazy load of branches and tags menu...
r1608 %endfor
%else:
<li>${h.link_to(_('There are no tags yet'),'#')}</li>
%endif
White-space cleanup
r1888 </ul>
implements #135 bookmark support for UI
r1748 </li>
White-space cleanup
r1888 %if c.rhodecode_repo.alias == 'hg':
implements #135 bookmark support for UI
r1748 <li>
${h.link_to('%s (%s)' % (_('bookmarks'),len(c.rhodecode_repo.bookmarks.values()),),h.url('bookmarks_home',repo_name=c.repo_name),class_='bookmarks childs')}
<ul>
%if c.rhodecode_repo.bookmarks.values():
%for cnt,book in enumerate(c.rhodecode_repo.bookmarks.items()):
Implements #304...
r1770 <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[1]))}</pre></div></li>
implements #135 bookmark support for UI
r1748 %endfor
%else:
<li>${h.link_to(_('There are no bookmarks yet'),'#')}</li>
%endif
White-space cleanup
r1888 </ul>
</li>
%endif