Files
@ 670713507d03
Branch filter:
Location: kallithea/pylons_app/templates/summary.html - annotation
670713507d03
2.8 KiB
text/html
Moved summary to seperate controller,
little cleanups in templates.
added archives to summary
little cleanups in templates.
added archives to summary
cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 670713507d03 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 670713507d03 cdf4fda66dd9 670713507d03 cdf4fda66dd9 670713507d03 cdf4fda66dd9 670713507d03 c2f27b9b81bc 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 670713507d03 cdf4fda66dd9 cdf4fda66dd9 670713507d03 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 c2f27b9b81bc cdf4fda66dd9 928416088790 cdf4fda66dd9 928416088790 cdf4fda66dd9 928416088790 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 670713507d03 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 670713507d03 cdf4fda66dd9 928416088790 928416088790 928416088790 cdf4fda66dd9 670713507d03 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 928416088790 928416088790 928416088790 cdf4fda66dd9 670713507d03 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 | <%inherit file="base/base.html"/>
<%def name="title()">
${_('Repository managment')}
</%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))}
/
${_('summary')}
</%def>
<%def name="page_nav()">
<form action="log">
<dl class="search">
<dt><label>Search: </label></dt>
<dd><input type="text" name="rev" /></dd>
</dl>
</form>
<ul class="page-nav">
<li class="current">summary</li>
<li><a href="shortlog">shortlog</a></li>
<li><a href="log">changelog</a></li>
<li><a href="graph/{node|short}">graph</a></li>
<li><a href="tags">tags</a></li>
<li><a href="branches">branches</a></li>
<li><a href="file/{node|short}">files</a></li>
</ul>
</%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Mercurial Repository Overview')}</h2>
<dl class="overview">
<dt>${_('name')}</dt>
<dd>${c.repo_info.name}</dd>
<dt>${_('description')}</dt>
<dd>${c.repo_info.description}</dd>
<dt>${_('contact')}</dt>
<dd>${c.repo_info.contact}</dd>
<dt>${_('last change')}</dt>
<dd>${c.repo_info.last_change|n,self.f.rfc822date} - ${c.repo_info.last_change|n,self.f.age}</dd>
<dt>${_('url')}</dt>
<dd><pre>$ hg clone <a href="${c.clone_repo_url}">${c.clone_repo_url}</a></pre></dd>
<dt>${_('Download')}</dt>
<dd>
%for archive in c.repo_info._get_archives():
| <a href="/${c.repo_info.name}/archive/${archive['node']}${archive['extension']}">
${c.repo_info.name}.${archive['type']}
</a>
%endfor
|
</dd>
</dl>
<h2><a href="{url}shortlog">Changes</a></h2>
<table>
%for cnt,cs in enumerate(c.repo_changesets):
<tr class="parity${cnt%2}">
<td>${cs._ctx.date()|n,self.f.age}</td>
<td>${cs.author}</td>
<td>${h.link_to(cs.message,h.url('rev/'+str(cs._ctx)))}</td>
<td class="nowrap">
${h.link_to(_('changeset'),h.url('file/'+str(cs._ctx)))}
|
${h.link_to(_('files'),h.url('file/'+str(cs._ctx)))}
</td>
</tr>
%endfor
<tr class="light">
<td colspan="4"><a class="list" href="shortlog">...</a></td>
</tr>
</table>
<h2><a href="{url}tags">${_('Tags')}</a></h2>
<table>
%for tag in c.repo_tags:
${tag}
%endfor
<tr class="light">
<td colspan="3"><a class="list" href="tags">...</a></td>
</tr>
</table>
<h2 class="no-link">Branches</h2>
<table>
%for branch in c.repo_branches:
${branch}
%endfor
<tr class="light">
<td colspan="4"><a class="list" href="branches">...</a></td>
</tr>
</table>
</%def>
|