anonkun/templates/profile.html

8 lines
227 B
HTML
Raw Normal View History

2018-06-21 11:00:24 -04:00
{% extends "base.html" %}
{% block title %}{{ username }}{% endblock %}
{% block content %}
<h1>{{ username }}'s profile</h1>
Signed up: {{ signup_date | strftime }}<br />
Num. quests ran: {{ num_quests }}<br />
{% endblock %}