comparison rhodecode/templates/summary/summary.html @ 2973:9937afa7f093 beta

whitespace cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 29 Oct 2012 21:27:05 +0100
parents 19ea3e16f65b
children 0bc7b5895242
comparison
equal deleted inserted replaced
2972:8f5e2206e326 2973:9937afa7f093
61 <span id="follow_toggle" class="follow tooltip" title="${_('Start following this repository')}" 61 <span id="follow_toggle" class="follow tooltip" title="${_('Start following this repository')}"
62 onclick="javascript:toggleFollowingRepo(this,${c.dbrepo.repo_id},'${str(h.get_token())}')"> 62 onclick="javascript:toggleFollowingRepo(this,${c.dbrepo.repo_id},'${str(h.get_token())}')">
63 </span> 63 </span>
64 %endif 64 %endif
65 %endif: 65 %endif:
66 66
67 ## locking icon 67 ## locking icon
68 %if c.rhodecode_db_repo.enable_locking: 68 %if c.rhodecode_db_repo.enable_locking:
69 %if c.rhodecode_db_repo.locked[0]: 69 %if c.rhodecode_db_repo.locked[0]:
70 <span class="locking_locked tooltip" title="${_('Repository locked by %s') % h.person_by_id(c.rhodecode_db_repo.locked[0])}"></span> 70 <span class="locking_locked tooltip" title="${_('Repository locked by %s') % h.person_by_id(c.rhodecode_db_repo.locked[0])}"></span>
71 %else: 71 %else:
72 <span class="locking_unlocked tooltip" title="${_('Repository unlocked')}"></span> 72 <span class="locking_unlocked tooltip" title="${_('Repository unlocked')}"></span>
73 %endif 73 %endif
74 %endif 74 %endif
75 ##REPO TYPE 75 ##REPO TYPE
76 %if h.is_hg(c.dbrepo): 76 %if h.is_hg(c.dbrepo):
77 <img style="margin-bottom:2px" class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/> 77 <img style="margin-bottom:2px" class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/>
78 %endif 78 %endif
79 %if h.is_git(c.dbrepo): 79 %if h.is_git(c.dbrepo):