gcs-django/gurps_character/templates/characters/list.html
2024-06-26 14:29:06 +10:00

18 lines
484 B
HTML

{% extends "base.html" %}
{% block content %}
<ul>
{% for character in characters %}
<li>
<a href="{% url 'details' character.uuid %}">{{ character.name }}</a>
<a href="{% url 'download' character.uuid %}">Download</a>
</li>
{% endfor %}
</ul>
<a href="{% url 'upload' %}">Upload new character</a>
<form method="POST" enctype="multipart/form-data" action="{% url 'index' %}">
{% csrf_token %}
{{ form }}
<input type="submit" value="Upload">
</form>
{% endblock %}