Files
@ 1c32b72930fa
Branch filter:
Location: kallithea/rhodecode/templates/forks/forks.html - annotation
1c32b72930fa
694 B
text/html
Addding context bar to more repo related pages.
Fixing the base template to work on non-repo related pages.
Fixing the base template to work on non-repo related pages.
7e75af301842 7e75af301842 7e75af301842 7e75af301842 76d156bef5a2 7e75af301842 7e75af301842 7e75af301842 79818f546538 f91d3f9b7230 f74be3359044 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 1c32b72930fa 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 7e75af301842 f91d3f9b7230 7e75af301842 f91d3f9b7230 f91d3f9b7230 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Forks') % c.repo_name} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_(u'Home'),h.url('/'))}
»
${h.repo_link(c.rhodecode_db_repo.groups_and_repo)}
»
${_('forks')}
</%def>
<%def name="page_nav()">
${self.menu('forks')}
</%def>
<%def name="main()">
${self.context_bar('forks')}
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<div id="forks">
${c.forks_data}
</div>
</div>
</div>
</%def>
|