comparison rhodecode/templates/journal/journal.html @ 1770:184557472f5c beta

Implements #304 hashes in relevant places are displayed using monospaced font.
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 08 Dec 2011 04:32:42 +0200
parents 60a00fd76d58
children 9edd6ac132f0
comparison
equal deleted inserted replaced
1769:025f3333c769 1770:184557472f5c
27 <div class="box box-right"> 27 <div class="box box-right">
28 <!-- box / title --> 28 <!-- box / title -->
29 <div class="title"> 29 <div class="title">
30 <h5> 30 <h5>
31 <input class="q_filter_box" id="q_filter" size="15" type="text" name="filter" value="${_('quick filter...')}"/> 31 <input class="q_filter_box" id="q_filter" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
32 <a id="show_my" class="link-white" href="#my">${_('My repositories')}</a> / <a id="show_watched" class="link-white" href="#watched">${_('Watched')}</a> 32 <a id="show_my" class="link-white" href="#my">${_('My repos')}</a> / <a id="show_watched" class="link-white" href="#watched">${_('Watched')}</a>
33 </h5> 33 </h5>
34 %if h.HasPermissionAny('hg.admin','hg.create.repository')(): 34 %if h.HasPermissionAny('hg.admin','hg.create.repository')():
35 <ul class="links"> 35 <ul class="links">
36 <li> 36 <li>
37 <span>${h.link_to(_('ADD REPOSITORY'),h.url('admin_settings_create_repository'))}</span> 37 <span>${h.link_to(_('ADD'),h.url('admin_settings_create_repository'))}</span>
38 </li> 38 </li>
39 </ul> 39 </ul>
40 %endif 40 %endif
41 </div> 41 </div>
42 <!-- end box / title --> 42 <!-- end box / title -->
72 <img class="icon" alt="${_('public')}" 72 <img class="icon" alt="${_('public')}"
73 title="${_('Fork of')} ${repo['dbrepo_fork']['repo_name']}" 73 title="${_('Fork of')} ${repo['dbrepo_fork']['repo_name']}"
74 src="${h.url('/images/icons/arrow_divide.png')}"/></a> 74 src="${h.url('/images/icons/arrow_divide.png')}"/></a>
75 %endif 75 %endif
76 </td> 76 </td>
77 <td><span class="tooltip" title="${repo['last_change']}">${("r%s:%s") % (repo['rev'],h.short_id(repo['tip']))}</span></td> 77 <td><div class="tooltip" title="${repo['last_change']}"><pre>${("r%s:%s") % (repo['rev'],h.short_id(repo['tip']))}</pre></div></td>
78 <td><a href="${h.url('repo_settings_home',repo_name=repo['name'])}" title="${_('edit')}"><img class="icon" alt="${_('private')}" src="${h.url('/images/icons/application_form_edit.png')}"/></a></td> 78 <td><a href="${h.url('repo_settings_home',repo_name=repo['name'])}" title="${_('edit')}"><img class="icon" alt="${_('private')}" src="${h.url('/images/icons/application_form_edit.png')}"/></a></td>
79 <td> 79 <td>
80 ${h.form(url('repo_settings_delete', repo_name=repo['name']),method='delete')} 80 ${h.form(url('repo_settings_delete', repo_name=repo['name']),method='delete')}
81 ${h.submit('remove_%s' % repo['name'],'',class_="delete_icon action_button",onclick="return confirm('Confirm to delete this repository');")} 81 ${h.submit('remove_%s' % repo['name'],'',class_="delete_icon action_button",onclick="return confirm('Confirm to delete this repository');")}
82 ${h.end_form()} 82 ${h.end_form()}