blob: e8a7bf114dcdc6c4f642c0dbd5cbd7c5499d19f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{% extends "base.html" %}
{% load tz %}
{% block title %}Parabola GNU/Linux-libre - Hackers World Clocks{% endblock %}
{% block content %}
<div id="dev-clocks-box" class="box">
<h2>Hackers World Clocks</h2>
<p>This page helps prevent you from waking a sleeping hacker. It also
depends on hackers keeping the time zone information up to date, so if
you see 'UTC' listed, pester them to update their settings.</p>
<p>
UTC Time: {{ utc_now|date:"Y-m-d H:i T" }}
</p>
<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>
</tr>
</thead>
<tbody>
{% for dev in developers %}
<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>{{ utc_now|timezone:dev.userprofile.time_zone|date:"Y-m-d H:i T" }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% load cdn %}{% jquery %}
<script type="text/javascript" src="{{ STATIC_URL }}jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="{{ STATIC_URL }}archweb.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#clocks-table:has(tbody tr)").tablesorter(
{widgets: ['zebra'], sortList: [[0,0]]});
});
</script>
{% endblock %}
|