##// END OF EJS Templates
template: use mako block for root.html extra sections
template: use mako block for root.html extra sections

File last commit:

r4809:ec39e73b default
r4810:6a825018 default
Show More
forks.html
33 lines | 638 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Forks') % c.repo_name}
%if c.site_name:
&middot; ${c.site_name}
%endif
</%def>
<%def name="breadcrumbs_links()">
${_('Forks')}
</%def>
<%block name="header_menu">
${self.menu('repositories')}
</%block>
<%def name="main()">
${self.repo_context_bar('showforks')}
<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>