comparison rhodecode/templates/journal/journal.html @ 2674:a221706dab50 beta

merged + fixed pull request #62: Implemented metatags and visualisation options. - new tag lang - fixed found issues - added simple test
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 27 Jul 2012 01:21:07 +0200
parents c5be5591c265
children 63e58ef80ef1 0add173667b6
comparison
equal deleted inserted replaced
2673:d5e42c00f3c1 2674:a221706dab50
126 <img class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/> 126 <img class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/>
127 %elif h.is_git(entry.follows_repository): 127 %elif h.is_git(entry.follows_repository):
128 <img class="icon" title="${_('Git repository')}" alt="${_('Git repository')}" src="${h.url('/images/icons/giticon.png')}"/> 128 <img class="icon" title="${_('Git repository')}" alt="${_('Git repository')}" src="${h.url('/images/icons/giticon.png')}"/>
129 %endif 129 %endif
130 130
131 %if entry.follows_repository.private: 131 %if entry.follows_repository.private and c.visual.show_private_icon:
132 <img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="${h.url('/images/icons/lock.png')}"/> 132 <img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="${h.url('/images/icons/lock.png')}"/>
133 %else: 133 %elif not entry.follows_repository.private and c.visual.show_public_icon:
134 <img class="icon" title="${_('public repository')}" alt="${_('public repository')}" src="${h.url('/images/icons/lock_open.png')}"/> 134 <img class="icon" title="${_('public repository')}" alt="${_('public repository')}" src="${h.url('/images/icons/lock_open.png')}"/>
135 %endif 135 %endif
136 <span class="watched_repo"> 136 <span class="watched_repo">
137 ${h.link_to(entry.follows_repository.repo_name,h.url('summary_home',repo_name=entry.follows_repository.repo_name))} 137 ${h.link_to(entry.follows_repository.repo_name,h.url('summary_home',repo_name=entry.follows_repository.repo_name))}
138 </span> 138 </span>