diff --git a/rhodecode/templates/search/search_commit.html b/rhodecode/templates/search/search_commit.html --- a/rhodecode/templates/search/search_commit.html +++ b/rhodecode/templates/search/search_commit.html @@ -0,0 +1,44 @@ +##commit highligthing + +%for cnt,sr in enumerate(c.formated_results): + %if h.HasRepoPermissionAny('repository.write','repository.read','repository.admin')(sr['repository'],'search results check'): +
+
+
+
${h.link_to(h.literal('%s » %s' % (sr['repository'],sr['f_path'])), + h.url('changeset_home',repo_name=sr['repository'],revision=sr['path']))} +
+
+
+
+
+ gravatar +
+ ${h.person(sr['author'])}
+ ${h.email_or_none(sr['author'])}
+
+ %if sr['message_hl']: +
+
${h.literal(sr['message_hl'])}
+
+ %else: +
${h.urlify_commit(sr['message'], sr['repository'])}
+ %endif +
+
+
+ %else: + %if cnt == 0: +
+
+
${_('Permission denied')}
+
+
+ %endif + %endif +%endfor +%if c.cur_query and c.formated_results: +
+ ${c.formated_results.pager('$link_previous ~2~ $link_next')} +
+%endif