%for entry in c.formatted_results: ## search results are additionally filtered, and this check is just a safe gate % if h.HasRepoPermissionAny('repository.write','repository.read','repository.admin')(entry['repository'], 'search results content check'):

%if h.get_repo_type_by_name(entry.get('repository')) == 'hg': %elif h.get_repo_type_by_name(entry.get('repository')) == 'git': %elif h.get_repo_type_by_name(entry.get('repository')) == 'svn': %endif ${h.link_to(entry['repository'], h.url('summary_home',repo_name=entry['repository']))}

${h.link_to(h.literal(entry['f_path']), h.url('files_home',repo_name=entry['repository'],revision=entry.get('commit_id', 'tip'),f_path=entry['f_path']))} %if entry.get('lines'): | ${entry.get('lines', 0.)} ${ungettext('line', 'lines', entry.get('lines', 0.))} %endif %if entry.get('size'): | ${h.format_byte_size_binary(entry['size'])} %endif %if entry.get('mimetype'): | ${entry.get('mimetype', "unknown mimetype")} %endif
${_('Show Full History')} | ${h.link_to(_('Annotation'), h.url('files_annotate_home', repo_name=entry.get('repository',''),revision=entry.get('commit_id', 'tip'),f_path=entry.get('f_path','')))} | ${h.link_to(_('Raw'), h.url('files_raw_home', repo_name=entry.get('repository',''),revision=entry.get('commit_id', 'tip'),f_path=entry.get('f_path','')))} | ${_('Download')}
${h.literal(entry['content_short_hl'])}
% endif %endfor
%if c.cur_query and c.formatted_results:
${c.formatted_results.pager('$link_previous ~2~ $link_next')}
%endif