##// END OF EJS Templates
fixed git diff function when initial revision had no parents to compare with
fixed git diff function when initial revision had no parents to compare with

File last commit:

r2492:79818f54 beta
r2499:c919d8c4 beta
Show More
forks.html
32 lines | 683 B | text/html | HtmlLexer
Added simple forks page, resolves issue #179
r1301 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Vincent Duvert
Better i18n for page titles.
r2417 ${_('%s Forks') % c.repo_name} - ${c.rhodecode_name}
Added simple forks page, resolves issue #179
r1301 </%def>
<%def name="breadcrumbs_links()">
Takumi IINO
i18n 'Home' in breadcrumbs
r2492 ${h.link_to(_(u'Home'),h.url('/'))}
White-space cleanup
r1888 &raquo;
Added simple forks page, resolves issue #179
r1301 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
${_('forks')}
</%def>
<%def name="page_nav()">
${self.menu('forks')}
</%def>
<%def name="main()">
<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>