##// END OF EJS Templates
#2: proposed changes to shortlog added header table description
#2: proposed changes to shortlog added header table description

File last commit:

r277:7ec4463b default
r279:ba0523f4 default
Show More
branches.html
38 lines | 1.1 KiB | text/html | HtmlLexer
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%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()">
removed search field from templates
r189 ${self.menu('branches')}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Branches')}</h2>
<table>
fixed branches and tags, fetching for new vcs implementation
r277 %for cnt,branch in enumerate(c.repo_branches.items()):
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <tr class="parity${cnt%2}">
fixed branches and tags, fetching for new vcs implementation
r277 <td>${branch[1]._ctx.date()|n,filters.age}</td>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <td>
<span class="logtags">
fixed branches and tags, fetching for new vcs implementation
r277 <span class="branchtag">${h.link_to(branch[0],
h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))}</span>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </span>
</td>
<td class="nowrap">
fixed branches and tags, fetching for new vcs implementation
r277 ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 |
fixed branches and tags, fetching for new vcs implementation
r277 ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=branch[1].raw_id))}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </td>
</tr>
%endfor
</table>
</%def>