diff options
author | eliott <eliott@cactuswax.net> | 2008-04-09 21:40:58 -0700 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-04-09 21:40:58 -0700 |
commit | b8c6f969fb6d416f3369a525c7e06a2531bc210b (patch) | |
tree | 9a6c058ae308e213b5699884c4d11d8594173c2e /templates | |
parent | a880de193fbf0d5b04bf4a17af428fa787015959 (diff) |
Fix for dev names in developer list
Had to backport from archweb_pub.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/devel/developers.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/devel/developers.html b/templates/devel/developers.html index 6b1fe8b7..179e03aa 100644 --- a/templates/devel/developers.html +++ b/templates/devel/developers.html @@ -6,7 +6,7 @@ <br /><br /> <div id="devlist"> {% for dev in devs %} - <a href="#{{ dev.first_name}}">{{ dev.first_name }}</a> + <a href="#{{ dev.first_name}}{{ dev.last_name.0|upper }}">{{ dev.first_name }}{{ dev.last_name.0|upper }}</a> {% endfor %} </div><br /><br /> @@ -16,7 +16,7 @@ <td class="devpic"> <img src="{{ dev.get_profile.get_picture_url }}" height="175" width="175" style="border:1px solid black"> </td><td> - <a name="{{ dev.first_name }}" /> + <a name="{{ dev.first_name }}{{ dev.last_name.0|upper }}" /> <table class="deventry" cellspacing="5"> <tr> <th>Name:</th> |