Skip to content

Commit

Permalink
merging lp:~pedronis/graphite/fix-event-date
Browse files Browse the repository at this point in the history
cdavis committed Oct 4, 2011
2 parents 1fb6b70 + 5d4e257 commit 9fe2ad5
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions webapp/graphite/templates/event.html
Original file line number Diff line number Diff line change
@@ -20,11 +20,11 @@ <h1>{{event.what}}</h1>
<div class="graphite">
<div id="main" >
<table class="styledtable" width=100%>
<tr><td>when</td><td>{{event.when|date:"H:m:s D d M Y" }}</td></tr>
<tr><td>when</td><td>{{event.when|date:"H:i:s D d M Y" }}</td></tr>
<tr><td>tags</td><td>{{event.tags}}</td></tr>
<tr><td>data</td><td>{{event.data}}</td></tr>
</table>
</div>
</div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion webapp/graphite/templates/events.html
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ <h1>graphite events</h1>
<tr><th>when</th><th>what</th><th>tags</th></tr>
{% for event in events %}
<tr>
<td>{{event.when|date:"H:m:s D d M Y" }}</td>
<td>{{event.when|date:"H:i:s D d M Y" }}</td>
<td><a href="/events/{{event.id}}/">{{event.what}}</a></td>
<td>{{event.tags}}</td>
</tr>

0 comments on commit 9fe2ad5

Please sign in to comment.