evorepo/templates/devel/profile.html
Dan McGee 9279d9a04c Fix minor validation error
Signed-off-by: Dan McGee <dan@archlinux.org>
2011-11-30 12:29:21 -06:00

26 lines
829 B
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - Edit Profile{% endblock %}
{% block content %}
<div id="dev-edit-profile" class="box">
<h2>Developer Profile</h2>
<form id="edit-profile-form" enctype="multipart/form-data" method="post" action="">{% csrf_token %}
<p><em>Note:</em> This is the public information shown on the developer
and/or TU profiles page, so please be appropriate with the information
you provide here.</p>
<fieldset>
<p><label>Username:</label>
<strong>{{ user.username }}</strong></p>
{{ form.as_p }}
</fieldset>
<fieldset>
{{ profile_form.as_p }}
</fieldset>
<p><label></label> <input title="Save changes" type="submit" value="Save" /></p>
</form>
</div>
{% endblock %}