diff --git a/rhodecode/templates/index_base.html b/rhodecode/templates/index_base.html --- a/rhodecode/templates/index_base.html +++ b/rhodecode/templates/index_base.html @@ -1,18 +1,4 @@ <%page args="parent" /> - <%def name="get_sort(name)"> - <%name_slug = name.lower().replace(' ','_') %> - - %if name_slug == c.sort_slug: - %if c.sort_by.startswith('-'): - ${name}↑ - %else: - ${name}↓ - %endif: - %else: - ${name} - %endif - -
@@ -67,11 +53,11 @@ - ${get_sort(_('Name'))} - ${get_sort(_('Description'))} - ${get_sort(_('Last change'))} - ${get_sort(_('Tip'))} - ${get_sort(_('Owner'))} + ${_('Name')} + ${_('Description')} + ${_('Last change')} + ${_('Tip')} + ${_('Owner')} ${_('RSS')} ${_('Atom')} @@ -145,10 +131,7 @@ %if repo['rev']>=0: - ${h.link_to('r%s:%s' % (repo['rev'],h.short_id(repo['tip'])), - h.url('changeset_home',repo_name=repo['name'],revision=repo['tip']), - class_="tooltip", - title=h.tooltip('%s\n%s' % (repo['author'],repo['last_msg'])))} + ${'r%s:%s' % (repo['rev'],h.short_id(repo['tip']))} %else: ${_('No changesets yet')} %endif @@ -170,7 +153,6 @@ %endfor -