blob: 5b5a586b3aec1dad697c98a980fdce75ac6d3679 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% 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 %}
|