##// END OF EJS Templates
fixed breadcrumbs in few pages
fixed breadcrumbs in few pages

File last commit:

r816:555b68f9 beta
r1084:17721a2d beta
Show More
file_diff.html
49 lines | 1.6 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 <%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${c.repo_name} ${_('File diff')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
#38 updated RhodeCode titles
r619
renamed project to rhodecode
r547 <%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
&raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
Fixes for raw_id, needed for git...
r636 ${_('File diff')} r${c.changeset_1.revision}:${h.short_id(c.changeset_1.raw_id)} &rarr; r${c.changeset_2.revision}:${h.short_id(c.changeset_2.raw_id)}
renamed project to rhodecode
r547 </%def>
<%def name="page_nav()">
${self.menu('files')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<div class="table">
<div id="body" class="diffblock">
<div class="code-header">
some small css fixes for changesets
r816 <div class="changeset_header">
<span class="changeset_file">${h.link_to(c.f_path,h.url('files_home',repo_name=c.repo_name,
Fixes for raw_id, needed for git...
r636 revision=c.changeset_2.raw_id,f_path=c.f_path))}</span>
renamed project to rhodecode
r547 &raquo; <span>${h.link_to(_('diff'),
Fixes for raw_id, needed for git...
r636 h.url.current(diff2=c.changeset_2.raw_id,diff1=c.changeset_1.raw_id,diff='diff'))}</span>
renamed project to rhodecode
r547 &raquo; <span>${h.link_to(_('raw diff'),
Fixes for raw_id, needed for git...
r636 h.url.current(diff2=c.changeset_2.raw_id,diff1=c.changeset_1.raw_id,diff='raw'))}</span>
renamed project to rhodecode
r547 &raquo; <span>${h.link_to(_('download diff'),
Fixes for raw_id, needed for git...
r636 h.url.current(diff2=c.changeset_2.raw_id,diff1=c.changeset_1.raw_id,diff='download'))}</span>
renamed project to rhodecode
r547 </div>
</div>
<div class="code-body">
%if c.no_changes:
${_('No changes')}
%else:
${c.cur_diff|n}
%endif
</div>
</div>
</div>
</div>
</%def>