~bnrubin/bantrackertwo/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "bt/base.html" %}
{% block content %}
Current user information:
<table>
<tr>
    <td>Username</td>
    <td>{{ user.username }}</td>
</tr>
<tr>
    <td>Hostname</td>
    <td>{{ profile.hostmask }}</td>
</tr>
<tr>
    <td>Timezone</td>
    <td>{{ profile.timezone }}</td>
</tr>
    
</table>
{% endblock content %}