From 5b63c29fe1c37ce9d946adedeaf13f5ad94d144a Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 15 Nov 2011 14:03:36 -0600 Subject: 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 --- templates/public/developer_list.html | 2 +- templates/public/userlist.html | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'templates') 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 @@

{% for dev in dev_list %} - {{ dev.first_name }}{{ dev.last_name.0|capfirst}}    + {{ dev.first_name }} {{ dev.last_name }}    {% endfor %}

diff --git a/templates/public/userlist.html b/templates/public/userlist.html index c51215c..0077f61 100644 --- a/templates/public/userlist.html +++ b/templates/public/userlist.html @@ -6,7 +6,6 @@ {% block content %} {% cache 600 dev-tu-profiles user_type %}
-

Arch Linux {{user_type}}

{{description}}

@@ -14,7 +13,6 @@ {% with users as dev_list %} {% include 'public/developer_list.html' %} {% endwith %} -
{% endcache %} {% endblock %} -- cgit v1.2.3-24-g4f1b