Commit 20a0d240dc6f3a00124df90f3910c42e89112efc
1 parent
44c39e23
Exists in
master
and in
39 other branches
Minor fix
Showing
1 changed file
with
6 additions
and
6 deletions
Show diff stats
src/super_archives/templates/message-preview.html
@@ -41,19 +41,19 @@ | @@ -41,19 +41,19 @@ | ||
41 | {% if result.fullname or result.modified_by %} | 41 | {% if result.fullname or result.modified_by %} |
42 | <span class="pull-left">{% trans "by" %} | 42 | <span class="pull-left">{% trans "by" %} |
43 | {% if result.modified_by and result.modified_by_url %} | 43 | {% if result.modified_by and result.modified_by_url %} |
44 | - <a href="{{ result.author_url }}"> | 44 | + <a href="{{ result.modified_by_url }}"> |
45 | {% if query %} | 45 | {% if query %} |
46 | - {% highlight result.fullname with query %} | 46 | + {% highlight result.modified_by with query %} |
47 | {% else %} | 47 | {% else %} |
48 | - {{ result.fullname }} | 48 | + {{ result.modified_by }} |
49 | {% endif %} | 49 | {% endif %} |
50 | </a> | 50 | </a> |
51 | {% elif result.fullname and result.author_url %} | 51 | {% elif result.fullname and result.author_url %} |
52 | - <a href="{{ result.modified_by_url }}"> | 52 | + <a href="{{ result.author_url }}"> |
53 | {% if query %} | 53 | {% if query %} |
54 | - {% highlight result.modified_by with query %} | 54 | + {% highlight result.fullname with query %} |
55 | {% else %} | 55 | {% else %} |
56 | - {{ result.modified_by }} | 56 | + {{ result.fullname }} |
57 | {% endif %} | 57 | {% endif %} |
58 | </a> | 58 | </a> |
59 | {% else %} | 59 | {% else %} |