search_path.mako
46 lines
| 1.8 KiB
| application/x-mako
|
MakoHtmlLexer
r3467 | <%namespace name="search" file="/search/search.mako"/> | |||
r3319 | % if c.formatted_results: | |||
r1282 | <table class="rctable search-results"> | |||
<tr> | ||||
<th>${_('Repository')}</th> | ||||
<th>${_('File')}</th> | ||||
r3322 | <th>${_('Size')}</th> | |||
<th>${_('Lines')}</th> | ||||
r1282 | </tr> | |||
%for entry in c.formatted_results: | ||||
## search results are additionally filtered, and this check is just a safe gate | ||||
r3376 | % if c.rhodecode_user.is_admin or h.HasRepoPermissionAny('repository.write','repository.read','repository.admin')(entry['repository'], 'search results path check'): | |||
r1282 | <tr class="body"> | |||
<td class="td-componentname"> | ||||
r3376 | <% repo_type = entry.get('repo_type') or h.get_repo_type_by_name(entry.get('repository')) %> | |||
r3467 | ${search.repo_icon(repo_type)} | |||
r1785 | ${h.link_to(entry['repository'], h.route_path('repo_summary',repo_name=entry['repository']))} | |||
r1282 | </td> | |||
<td class="td-componentname"> | ||||
${h.link_to(h.literal(entry['f_path']), | ||||
r1927 | h.route_path('repo_files',repo_name=entry['repository'],commit_id='tip',f_path=entry['f_path']))} | |||
r1282 | </td> | |||
r3322 | <td> | |||
%if entry.get('size'): | ||||
${h.format_byte_size_binary(entry['size'])} | ||||
%endif | ||||
</td> | ||||
<td> | ||||
%if entry.get('lines'): | ||||
${entry.get('lines', 0.)} ${_ungettext('line', 'lines', entry.get('lines', 0.))} | ||||
%endif | ||||
</td> | ||||
r1282 | </tr> | |||
% endif | ||||
%endfor | ||||
</table> | ||||
r3319 | %if c.cur_query: | |||
r1282 | <div class="pagination-wh pagination-left"> | |||
${c.formatted_results.pager('$link_previous ~2~ $link_next')} | ||||
</div> | ||||
r3319 | %endif | |||
% endif | ||||