You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
285 B

{% extends 'common/master.html' %}
{% block body %}
<p>Welcome, {{ user.username }}!</p>
<p>Email: {{ user.email }}.</p>
<p>Games:</p>
<ul>
{% for game in games %}
<li>
<a href="{% url game.url_name %}">{{ game.name }}</a>
</li>
{% endfor %}
</ul>
{% endblock %}