Added missing templates

This commit is contained in:
2010-03-17 00:28:51 +00:00
parent 65a6e3155b
commit 86948dc88d
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block content %}
<h1>Character List</h1>
{% if characters %}
<table>
<tr><th>Character Name</th><th>Corp</th></tr>
{% for char in characters %}
<tr><td><a href="/profile/characters/{{ char.id }}/">{{ char.name }}</a></td>
<td>{{ char.corp }}</td>
</tr>
{% endfor %}
</table>
{% endif %}
{% endblock %}