Optimize the user_view view, slashing the render time in half

This commit is contained in:
2010-10-18 16:09:25 +01:00
parent ad86c14ca0
commit b4ab0e40e1
2 changed files with 4 additions and 18 deletions

View File

@@ -57,7 +57,7 @@
<tr><th>Character Name</th><th>Corp</th></tr>
{% for char in characters %}
<tr><td><a href="{% url sso.views.characters char.id %}">{{ char.name }}</a></td>
<td>{{ char.corp }}</td>
<td>{{ char.corporation }}</td>
</tr>
{% endfor %}
</table>