##// END OF EJS Templates
release: Finish preparation for 4.18.0
release: Finish preparation for 4.18.0

File last commit:

r3706:9aa2b595 new-ui
r4182:f37a3126 v4.18.0 stable
Show More
files_pjax.mako
34 lines | 872 B | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 <%def name="title(*args)">
files: restructure the files views for easier restyling
r3648 ${_('{} Files').format(c.repo_name)}
templating: use .mako as extensions for template files.
r1282 %if hasattr(c,'file'):
files: restructure the files views for easier restyling
r3648 &middot; ${(h.safe_unicode(c.file.path) or '\\')}
templating: use .mako as extensions for template files.
r1282 %endif
%if c.rhodecode_name:
&middot; ${h.branding(c.rhodecode_name)}
%endif
</%def>
ui: new file tree switcher...
r3655 <div>
files: restructure the files views for easier restyling
r3648
templating: use .mako as extensions for template files.
r1282 <div class="summary-detail">
<div class="summary-detail-header">
files: updated based on new design
r3706
templating: use .mako as extensions for template files.
r1282 </div><!--end summary-detail-header-->
% if c.file.is_submodule():
<span class="submodule-dir">Submodule ${h.escape(c.file.name)}</span>
% elif c.file.is_dir():
files: restructure the files views for easier restyling
r3648 <%include file='files_tree_header.mako'/>
templating: use .mako as extensions for template files.
r1282 % else:
files: restructure the files views for easier restyling
r3648 <%include file='files_source_header.mako'/>
templating: use .mako as extensions for template files.
r1282 % endif
</div> <!--end summary-detail-->
% if c.file.is_dir():
<%include file='files_browser.mako'/>
% else:
<%include file='files_source.mako'/>
% endif
files: restructure the files views for easier restyling
r3648 </div>