evorepo/templates/devel/profile.html

22 lines
416 B
HTML
Raw Normal View History

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