~bnrubin/bantrackertwo/devel

« back to all changes in this revision

Viewing changes to templates/bt/settings.html

  • Committer: Benjamin Rubin
  • Date: 2009-09-02 02:14:31 UTC
  • Revision ID: bnrubin@romulus-20090902021431-02x226yec1d5sxal
- Cleaned up Event code and presentation
- Added basic Issue and Settings forms and presentation

Show diffs side-by-side

added added

removed removed

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