summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sitestatic/archweb.css4
-rw-r--r--templates/devel/clock.html2
2 files changed, 5 insertions, 1 deletions
diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css
index 3b638e2..cafae77 100644
--- a/sitestatic/archweb.css
+++ b/sitestatic/archweb.css
@@ -85,6 +85,10 @@ input[type=submit] {
clear: both;
}
+.hide {
+ display: none;
+}
+
hr {
border: none;
border-top: 1px solid #888;
diff --git a/templates/devel/clock.html b/templates/devel/clock.html
index 61e67c3..bdb7341 100644
--- a/templates/devel/clock.html
+++ b/templates/devel/clock.html
@@ -34,7 +34,7 @@
<td>{{ dev.userprofile.alias }}</td>
<td>{% if dev.userprofile.country %}<img src="{{ dev.userprofile.country.flag }}" alt="{{ dev.userprofile.country.name }}"/> {% endif %}{{ 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>
+ <td>{{ utc_now|timezone:dev.userprofile.time_zone|date:"Y-m-d H:i T" }}<span class="hide"> {{ dev.userprofile.time_zone }}</span></td>
</tr>
{% endfor %}
</tbody>