Move characters from SSO to EVE API

This commit is contained in:
2011-01-13 13:27:30 +00:00
parent 09a6e2528f
commit 9aec3166f3
7 changed files with 18 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block content %}
<h1>Character List</h1>
{% if characters %}
<table>
<tr><th>Character Name</th><th>Corporation</th><th>Alliance</th></tr>
{% for char in characters %}
<tr><td><a href="{% url sso.views.characters char.id %}">{{ char.name }}</a></td>
<td>{{ char.corporation }}</td>
<td>{% if char.corporation.alliance %}{{ char.corporation.alliance }}{% endif %}</td>
</tr>
{% endfor %}
</table>
{% endif %}
{% endblock %}