2011-10-03 16:36:04 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Edit Profile{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div id="registration">
|
|
|
|
<h1>Profile for {{ user }} </h1>
|
|
|
|
|
2011-10-21 19:35:31 +00:00
|
|
|
<p><b>Tagline:</b> {{ profile.tagline }}</p>
|
2011-10-03 16:36:04 +00:00
|
|
|
<p><a href="/profiles/edit/">Edit Again</a></p>
|
2013-03-14 19:33:00 +00:00
|
|
|
<p><a href="{% url supporter user %}/">{{user}}'s Unglue.it Page</a></p>
|
2011-10-03 16:36:04 +00:00
|
|
|
</div>
|
2011-10-21 19:35:31 +00:00
|
|
|
{% endblock content %}
|