diff options
author | Magnus Hagander | 2015-01-19 20:52:59 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-01-19 20:52:59 +0000 |
commit | 28159a0e953d5b29ac06d0847f24c922ed8ca901 (patch) | |
tree | 9e0e583a81cfe08d184b34bde2256f15f2234bd2 | |
parent | a43e449e04c82b3424fb3a5dd3561bd9f0d2d60e (diff) |
Fix field accessor for author names in search results
-rw-r--r-- | pgcommitfest/commitfest/templates/patchsearch.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/templates/patchsearch.html b/pgcommitfest/commitfest/templates/patchsearch.html index 4db2949..93da3cc 100644 --- a/pgcommitfest/commitfest/templates/patchsearch.html +++ b/pgcommitfest/commitfest/templates/patchsearch.html @@ -18,7 +18,7 @@ <td>{%for c in cfs %} <div style="margin-bottom: 3px;">{{c.commitfest}}: <span class="label label-default">{{c.statusstring}}</span></div> {%endfor%}</td> - <td>{{p.author_names|default:''}}</td> + <td>{{p.authors_string|default:''}}</td> </tr> {%endwith%} {%endfor%} |