##// END OF EJS Templates
reduce the size of repo in contextbar, it was too big and looked awkward.
reduce the size of repo in contextbar, it was too big and looked awkward.

File last commit:

r3609:2ea981f9 beta
r3661:2487fc74 beta
Show More
forks.html
30 lines | 593 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Forks') % c.repo_name} &middot; ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${_('Forks')}
</%def>
<%def name="page_nav()">
${self.menu('repositories')}
</%def>
<%def name="main()">
${self.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>