Files
@ 710e7a75bb6b
Branch filter:
Location: kallithea/pylons_app/templates/index.html - annotation
710e7a75bb6b
2.0 KiB
text/html
templating update, improved look & feel, version bump
e00dccb6f211 db39d0ca5308 db39d0ca5308 db39d0ca5308 e00dccb6f211 e00dccb6f211 e00dccb6f211 e00dccb6f211 e00dccb6f211 e96bc5a01490 e00dccb6f211 e00dccb6f211 556473ba0399 564e40829f80 e00dccb6f211 e00dccb6f211 e96bc5a01490 e96bc5a01490 e96bc5a01490 e96bc5a01490 e96bc5a01490 bf1b64046c79 e96bc5a01490 e96bc5a01490 e00dccb6f211 e00dccb6f211 e00dccb6f211 e00dccb6f211 e00dccb6f211 e00dccb6f211 e00dccb6f211 e00dccb6f211 e96bc5a01490 e96bc5a01490 2dc0c8e4f384 e00dccb6f211 e00dccb6f211 e00dccb6f211 928416088790 e96bc5a01490 db39d0ca5308 710e7a75bb6b 710e7a75bb6b 6257cf277395 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 6257cf277395 e00dccb6f211 66b20f525750 e00dccb6f211 2dc0c8e4f384 7a6a69f3b9ec 2dc0c8e4f384 e00dccb6f211 e00dccb6f211 e00dccb6f211 e00dccb6f211 | ## -*- coding: utf-8 -*-
<%!
from pylons_app.lib import filters
%>
<%inherit file="base/base.html"/>
<%def name="title()">
${c.repos_prefix} Mercurial Repositories
</%def>
<%def name="breadcrumbs()">
${c.repos_prefix} Mercurial Repositories
</%def>
<%def name="page_nav()">
${self.menu('home')}
</%def>
<%def name="main()">
<%def name="get_sort(name)">
<%name_slug = name.lower().replace(' ','_') %>
%if name_slug == c.cs_slug:
<span style="font-weight: bold;color:#006699">${name}</span>
%else:
<span style="font-weight: bold">${name}</span>
%endif
<a href="?sort=${name_slug}">↓</a>
<a href="?sort=-${name_slug}">↑</a>
</%def>
<table>
<tr>
<td>${get_sort(_('Name'))}</td>
<td>${get_sort(_('Description'))}</td>
<td>${get_sort(_('Last change'))}</td>
<td>${get_sort(_('Tip'))}</td>
<td>${get_sort(_('Contact'))}</td>
<td></td>
<td></td>
<td></td>
</tr>
%for cnt,repo in enumerate(c.repos_list):
<tr class="parity${cnt%2}">
<td>${h.link(repo['name'],h.url('summary_home',repo_name=repo['name']))}</td>
<td>${repo['description']}</td>
<td>${repo['last_change']|n,filters.age}</td>
<td>${h.link_to('r%s:%s' % (repo['rev'],repo['tip']),h.url('changeset_home',repo_name=repo['name'],revision=repo['tip']))}</td>
<td title="${repo['contact']}">${repo['contact']|n,filters.person}</td>
##%for archive in repo['repo_archives']:
##<td class="indexlinks">
## ${h.link_to(archive['type'],
## h.url('files_archive_home',repo_name=repo['name'],
## revision='tip',fileformat=archive['extension']),class_="archive_logo" )}
##</td>
##%endfor
<td>
${h.link_to(_('RSS'),h.url('rss_feed_home',repo_name=repo['name']),class_='rss_logo')}
</td>
<td>
${h.link_to(_('Atom'),h.url('atom_feed_home',repo_name=repo['name']),class_='atom_logo')}
</td>
</tr>
%endfor
</table>
</%def>
|