Files
test-auth/templates/eve_api/character_list.html

20 lines
464 B
HTML

{% 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 %}