Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Unified Diff: trunk/tools/chromium-status/templates/main.html

Issue 57013002: chromium-status: tighten up the Who/When columns (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/tools/chromium-status/stylesheets/style.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/tools/chromium-status/templates/main.html
===================================================================
--- trunk/tools/chromium-status/templates/main.html (revision 232630)
+++ trunk/tools/chromium-status/templates/main.html (working copy)
@@ -26,14 +26,14 @@
<table border="1" cellpadding="5">
<tr bgcolor="#CCCCFF">
<td><b>Who</b></td>
- <td><b>When</b></td>
+ <td><b>When (UTC)</b></td>
cmp 2013/11/02 22:46:55 We want this to be local time for people rather th
vapier 2013/11/02 22:48:36 yeah, i agree with that entirely. i've been ponde
vapier 2013/11/03 18:17:16 in looking at docs online, i don't think this can
cmp 2013/11/03 19:34:50 We'll end up wanting to implement it on the server
<td><b>Message</b></td>
</tr>
{% for a_status in status %}
<tr class="{{ a_status.general_state }}">
- <td>{{ a_status.username }}</td>
- <td>{{ a_status.date|date:"D M d, H:i T " }}</td>
- <td>{{ a_status.message }}</td>
+ <td class="username">{{ a_status.username }}</td>
+ <td class="date">{{ a_status.date|date:"D, d M H:i" }}</td>
+ <td class="message">{{ a_status.message }}</td>
</tr>
{% endfor %}
« no previous file with comments | « trunk/tools/chromium-status/stylesheets/style.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698