2019-01-23 23:53:13 +01:00
|
|
|
{% extends "base_generic.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2019-01-27 13:40:04 +01:00
|
|
|
<h2 class="tibia-headline">My Characters</h2>
|
2019-01-23 23:53:13 +01:00
|
|
|
{% if players %}
|
|
|
|
<ul>
|
|
|
|
{% for player in players %}
|
|
|
|
<li>{{ player.name }} - Level {{ player.level }} - Vocation: {{ player.vocation }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% else %}
|
|
|
|
This account has no characters yet.
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<a href="{% url 'accounts:create_char' %}">Create a new character</a>
|
|
|
|
|
|
|
|
{% endblock %}
|