pullrequest_show_all.html
31 lines
| 687 B
| text/html
|
HtmlLexer
r2440 | <%inherit file="/base/base.html"/> | |||
<%def name="title()"> | ||||
${c.repo_name} ${_('All pull requests')} | ||||
</%def> | ||||
<%def name="breadcrumbs_links()"> | ||||
${h.link_to(u'Home',h.url('/'))} | ||||
» | ||||
${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))} | ||||
» | ||||
${_('All pull requests')} | ||||
</%def> | ||||
<%def name="main()"> | ||||
<div class="box"> | ||||
<!-- box / title --> | ||||
<div class="title"> | ||||
${self.breadcrumbs()} | ||||
</div> | ||||
r2478 | ||||
r2440 | %for pr in c.pull_requests: | |||
<a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}">#${pr.pull_request_id}</a> | ||||
%endfor | ||||
r2478 | ||||
r2440 | </div> | |||
<script type="text/javascript"></script> | ||||
</%def> | ||||