diff options
Diffstat (limited to 'templates/public')
-rw-r--r-- | templates/public/developer_list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/public/developer_list.html b/templates/public/developer_list.html index c294dc72..662a21ed 100644 --- a/templates/public/developer_list.html +++ b/templates/public/developer_list.html @@ -1,7 +1,7 @@ <br /><br /> <div id="devlist"> {% for dev in dev_list %} - <a href="#{{ dev.first_name}}{{ dev.last_name.0|capfirst}}">{{ dev.first_name }}{{ dev.last_name.0|capfirst}}</a> + <a href="#{{ dev.username }}">{{ dev.first_name }}{{ dev.last_name.0|capfirst}}</a> {% endfor %} </div><br /><br /> @@ -11,7 +11,7 @@ <td class="devpic"> <img src="{{ dev.get_profile.picture.url }}" height="175" width="175" style="border:1px solid black" alt="Image for {{ dev.get_profile.alias }}"/> </td><td> - <a name="{{ dev.first_name }}{{ dev.last_name.0|capfirst}}" /> + <a name="{{ dev.username }}" /> {% autoescape off %} <table class="deventry" cellspacing="5"> <tr> |