##// 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:

r3609:2ea981f9 beta
r3779:e61a656b beta
Show More
forks.html
30 lines | 593 B | text/html | HtmlLexer
Added simple forks page, resolves issue #179
r1301 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('%s Forks') % c.repo_name} &middot; ${c.rhodecode_name}
Added simple forks page, resolves issue #179
r1301 </%def>
<%def name="breadcrumbs_links()">
Leonardo
Fixing missing icons....
r3532 ${_('Forks')}
Added simple forks page, resolves issue #179
r1301 </%def>
Mads Kiilerich
templates: enforce more consistency by being less flexible in templates...
r3609 <%def name="page_nav()">
${self.menu('repositories')}
</%def>
Added simple forks page, resolves issue #179
r1301 <%def name="main()">
show forks in contextbar
r3581 ${self.context_bar('showforks')}
Added simple forks page, resolves issue #179
r1301 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<div id="forks">
${c.forks_data}
White-space cleanup
r1888 </div>
Added simple forks page, resolves issue #179
r1301 </div>
White-space cleanup
r1888 </div>
</%def>