diff options
Diffstat (limited to 'templates/devel')
-rw-r--r-- | templates/devel/clock.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/devel/clock.html b/templates/devel/clock.html index 1bc9a849..03d0e9ca 100644 --- a/templates/devel/clock.html +++ b/templates/devel/clock.html @@ -6,13 +6,13 @@ <div id="dev-clocks-box" class="box"> <h2>Developer World Clocks</h2> - <p>This page helps prevent you from waking a sleeping developer. It also - depends on developers keeping the time zone information up to date, so if - you see 'UTC' listed, pester them to update their settings.</p> - <p> - Arch Server Time: {{ now|date:"Y-m-d H:i T" }}<br/> - UTC Time: {{ utc_now|date:"Y-m-d H:i T" }} - </p> + <p>This page helps prevent you from waking a sleeping developer. It also + depends on developers keeping the time zone information up to date, so if + you see 'UTC' listed, pester them to update their settings.</p> + <p> + Arch Server Time: {{ now|date:"Y-m-d H:i T" }}<br/> + UTC Time: {{ utc_now|date:"Y-m-d H:i T" }} + </p> <table id="clocks-table" class="results dash-stats"> <thead> @@ -27,7 +27,7 @@ <tbody> {% for dev in developers %} <tr class="{% cycle 'odd' 'even' %}"> - <td>{{ dev.get_full_name }}</td> + <td><a href="mailto:{{ dev.email }}">{{ dev.get_full_name }}</a></td> <td>{{ dev.username }}</td> <td>{{ dev.userprofile.location }}</td> <td>{{ dev.userprofile.time_zone }}</td> |