##// END OF EJS Templates
fixed fetch command for git repos, now it properly fetches from remotes
fixed fetch command for git repos, now it properly fetches from remotes

File last commit:

r2673:d5e42c00 beta
r3157:a73aca20 beta
Show More
pullrequest_show_all.html
42 lines | 1.1 KiB | text/html | HtmlLexer
- pull request generates overview based on it's params...
r2440 <%inherit file="/base/base.html"/>
<%def name="title()">
Added option to close pull requests, in future that will be close & merge
r2608 ${c.repo_name} ${_('all pull requests')}
- pull request generates overview based on it's params...
r2440 </%def>
<%def name="breadcrumbs_links()">
Takumi IINO
i18n 'Home' in breadcrumbs
r2492 ${h.link_to(_(u'Home'),h.url('/'))}
- pull request generates overview based on it's params...
r2440 &raquo;
${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))}
&raquo;
${_('All pull requests')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
white space cleanup
r2478
- pull request generates overview based on it's params...
r2440 %for pr in c.pull_requests:
little love for pull-requests list
r2586 <div>
Added option to close pull requests, in future that will be close & merge
r2608 <h4>
%if pr.is_closed():
<img src="${h.url('/images/icons/tick.png')}" alt="${_('Closed')}" />
white space cleanup
r2673 %endif
Added option to close pull requests, in future that will be close & merge
r2608 <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}">
little love for pull-requests list
r2586 ${_('Pull request #%s opened by %s on %s') % (pr.pull_request_id, pr.author.full_name, h.fmt_date(pr.created_on))}
</a>
</h4>
<h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5>
<div style="padding:0px 24px">${pr.description}</div>
</div>
- pull request generates overview based on it's params...
r2440 %endfor
white space cleanup
r2478
- pull request generates overview based on it's params...
r2440 </div>
<script type="text/javascript"></script>
</%def>