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

Unified Diff: templates/main.html

Issue 57643007: chromium-status: tighten up the Who/When columns (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-status
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 | « stylesheets/style.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/main.html
diff --git a/templates/main.html b/templates/main.html
index 9b319e7255906784a38638e3fa092481737bdab5..3e228f0a3f945c41c32d05444bae5ec123f7193d 100644
--- a/templates/main.html
+++ b/templates/main.html
@@ -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>
<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 | « stylesheets/style.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698