##// END OF EJS Templates
fix(imports): fixed circular import problem
fix(imports): fixed circular import problem

File last commit:

r5261:550d6219 default
r5341:115837d2 tip default
Show More
files_pjax.mako
32 lines | 798 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: don't use safe_unicode calls
r5004 &middot; ${(h.safe_str(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-->
fix(submodules): fixed an error if reaching out submodule path....
r5261 % if c.file.is_dir() or c.file.is_submodule():
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-->
fix(submodules): fixed an error if reaching out submodule path....
r5261
% if c.file.is_dir() or c.file.is_submodule():
templating: use .mako as extensions for template files.
r1282 <%include file='files_browser.mako'/>
% else:
<%include file='files_source.mako'/>
% endif
files: restructure the files views for easier restyling
r3648 </div>