diff options
Diffstat (limited to 'templates/devel/clock.html')
-rw-r--r-- | templates/devel/clock.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/devel/clock.html b/templates/devel/clock.html index ebc3b8bf..cbf4b834 100644 --- a/templates/devel/clock.html +++ b/templates/devel/clock.html @@ -14,11 +14,12 @@ UTC Time: {{ utc_now|date:"Y-m-d H:i T" }} </p> - <table id="clocks-table" class="results dash-stats"> + <table id="clocks-table" class="results"> <thead> <tr> <th>Hacker</th> <th>Username</th> + <th>Alias</th> <th>Location</th> <th>Time Zone</th> <th>Current Time</th> @@ -29,6 +30,7 @@ <tr class="{% cycle 'odd' 'even' %}"> <td><a href="mailto:{{ dev.email }}">{{ dev.get_full_name }}</a></td> <td>{{ dev.username }}</td> + <td>{{ dev.userprofile.alias }}</td> <td>{{ dev.userprofile.location }}</td> <td>{{ dev.userprofile.time_zone }}</td> <td>{{ dev.current_time|date:"Y-m-d H:i T" }}</td> |