evorepo/templates/devel/profile.html
2008-09-16 21:12:26 -04:00

22 lines
416 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="greybox">
<h2 class="title">Developer Profile</h2>
<form method="post" action=".">
<table>
<tr>
<th>Username:</th>
<td><strong>{{ user.username }}</strong></td>
</tr>
{{form}}
<tr>
<td colspan="2" align="right">
<input type="submit" value=" Save ">
</td>
</tr>
</table>
</form>
</div>
{% endblock %}