Files
@ cd2ee462fc2c
Branch filter:
Location: kallithea/pylons_app/templates/branches/branches.html - annotation
cd2ee462fc2c
1.3 KiB
text/html
implemented yui tooltip, and added it into annotation and main page.
20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 410101210923 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 373ddb868bd6 373ddb868bd6 373ddb868bd6 373ddb868bd6 373ddb868bd6 373ddb868bd6 373ddb868bd6 7ec4463b6e53 20dc7a5eb748 7ec4463b6e53 373ddb868bd6 20dc7a5eb748 20dc7a5eb748 7ec4463b6e53 7ec4463b6e53 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 7ec4463b6e53 20dc7a5eb748 7ec4463b6e53 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 | <%inherit file="/base/base.html"/>
<%! from pylons_app.lib import filters %>
<%def name="title()">
${_('Branches')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
/
${_('branches')}
</%def>
<%def name="page_nav()">
${self.menu('branches')}
</%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Branches')}</h2>
<table class="table_disp">
<tr class="header">
<td>${_('date')}</td>
<td>${_('revision')}</td>
<td>${_('name')}</td>
<td>${_('links')}</td>
</tr>
%for cnt,branch in enumerate(c.repo_branches.items()):
<tr class="parity${cnt%2}">
<td>${branch[1]._ctx.date()|n,filters.age}</td>
<td>r${branch[1].revision}:${branch[1].raw_id}</td>
<td>
<span class="logtags">
<span class="branchtag">${h.link_to(branch[0],
h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))}</span>
</span>
</td>
<td class="nowrap">
${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))}
|
${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=branch[1].raw_id))}
</td>
</tr>
%endfor
</table>
</%def>
|