evorepo/templates/devel/profile.html
Angel Velasquez d6d9a08e63 Adding changing of user profile details
The idea of this patch is allow to the developers who have an account, to
change their data without asking some admin to do it for them.

Dan: put private email address field back as it is used for a different
purpose; add some help text and field names as appropriate.

Signed-off-by: Angel Velasquez <angvp@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
2010-10-05 15:11:50 -05:00

26 lines
789 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" method="post">{% 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 %}