##// END OF EJS Templates
html: move "Submit a bug" to make it more clear that it is for RhodeCode, not the repo...
html: move "Submit a bug" to make it more clear that it is for RhodeCode, not the repo RhodeCode _could_ contain a bug tracker and this link _could_ be for filing bugs for the hosted projects. Moving the link to the RhodeCode info makes it more clear that it is for RhodeCode bugs. The server instance is however something local, not directly related to the upstream.

File last commit:

r3676:9d2db665 beta
r3779:e61a656b beta
Show More
pullrequest_show_all.html
26 lines | 486 B | text/html | HtmlLexer
- pull request generates overview based on it's params...
r2440 <%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('%s Pull Requests') % c.repo_name} &middot; ${c.rhodecode_name}
- pull request generates overview based on it's params...
r2440 </%def>
<%def name="breadcrumbs_links()">
Leonardo
Fixing missing icons....
r3532 ${_('Pull requests')}
- pull request generates overview based on it's params...
r2440 </%def>
Mads Kiilerich
templates: enforce more consistency by being less flexible in templates...
r3609 <%def name="page_nav()">
${self.menu('repositories')}
</%def>
- pull request generates overview based on it's params...
r2440 <%def name="main()">
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 ${self.context_bar('showpullrequest')}
pagination in pull-requests page + UI
r3676
- pull request generates overview based on it's params...
r2440 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
pagination in pull-requests page + UI
r3676 ${c.pullrequest_data}
- pull request generates overview based on it's params...
r2440 </div>
</%def>