summaryrefslogtreecommitdiffstats
path: root/templates/profiles/profile_detail.html
blob: cf2fb765b66175f917b59186ccb3859261438660 (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 %}