summaryrefslogtreecommitdiffstats
path: root/templates/profiles/profile_detail.html
blob: baf3fae6b84ee4bc49fc8537ad11fd4c6572f1e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block contentheader %}
<h1>Profile for {{ profile }}</h1>
{% endblock %}

{% block content %}

{{ profile }}

{% if form.errors %}
 <p class="errornote">Please correct the errors below</p>
{% endif %}
{% endblock %}