diff options
author | Dan McGee <dan@archlinux.org> | 2011-11-15 21:03:36 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-11-15 21:04:39 +0100 |
commit | 5b63c29fe1c37ce9d946adedeaf13f5ad94d144a (patch) | |
tree | 76ec0d8be088bc04886c7e0be4b6412699b7fedd /templates/public/developer_list.html | |
parent | 12408702eaf89ea338670ba808da9ef49e35c562 (diff) | |
download | archweb-5b63c29fe1c37ce9d946adedeaf13f5ad94d144a.tar.gz archweb-5b63c29fe1c37ce9d946adedeaf13f5ad94d144a.tar.xz |
Show full names on developer user list pages
The old display format doesn't really make sense. Also fix the invalid
HTML generated by the PGP tag link- we need to escape using & inside
the generated URLs.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/developer_list.html')
-rw-r--r-- | templates/public/developer_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/public/developer_list.html b/templates/public/developer_list.html index 2abbbfe..0ac444e 100644 --- a/templates/public/developer_list.html +++ b/templates/public/developer_list.html @@ -4,7 +4,7 @@ <p> {% for dev in dev_list %} <a href="#{{ dev.username }}" title="Jump to profile for {{ dev.get_full_name }}"> - {{ dev.first_name }}{{ dev.last_name.0|capfirst}}</a> + {{ dev.first_name }} {{ dev.last_name }}</a> {% endfor %} </p> </div> |