##// END OF EJS Templates
subrepo: show subrepo as dir path.
marcink -
r1105:e31abe60 default
parent child Browse files
Show More
@@ -29,9 +29,13 b''
29 <td class="td-componentname">
29 <td class="td-componentname">
30 %if node.is_submodule():
30 % if node.is_submodule():
31 <span class="submodule-dir">
31 <span class="submodule-dir">
32 ${h.link_to_if(
32 % if node.url.startswith('http://') or node.url.startswith('https://'):
33 node.url.startswith('http://') or node.url.startswith('https://'),
33 <a href="${node.url}">
34 node.name, node.url)}
34 <i class="icon-folder browser-dir"></i>${node.name}
35 </a>
36 % else:
37 <i class="icon-folder browser-dir"></i>${node.name}
38 % endif
35 </span>
39 </span>
36 %else:
40 % else:
37 <a href="${h.url('files_home',repo_name=c.repo_name,revision=c.commit.raw_id,f_path=h.safe_unicode(node.path))}" class="pjax-link">
41 <a href="${h.url('files_home',repo_name=c.repo_name,revision=c.commit.raw_id,f_path=h.safe_unicode(node.path))}" class="pjax-link">
General Comments 0
You need to be logged in to leave comments. Login now