Skip to content
This repository has been archived by the owner on Nov 21, 2020. It is now read-only.

Papercuts #25

Merged
merged 2 commits into from Feb 1, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions listener/media/css/screen.css
Expand Up @@ -41,7 +41,7 @@ strong {font-weight:bold;}
em, dfn {font-style:italic;}
dfn {font-weight:bold;}
sup, sub {line-height:0;}
abbr, acronym {border-bottom:1px dotted #666;}
abbr, acronym, #list-snippet td time {border-bottom:1px dotted #666;}
address {margin:0 0 1.5em;font-style:italic;}
del {color:#666;}
pre {margin:1.5em 0;white-space:pre;}
Expand Down Expand Up @@ -248,4 +248,4 @@ textarea {width:390px;height:250px;padding:5px;}
.success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
.error a {color:#8a1f11;}
.notice a {color:#514721;}
.success a {color:#264409;}
.success a {color:#264409;}
4 changes: 2 additions & 2 deletions listener/normal/error/templates/list-snippet.html
Expand Up @@ -4,9 +4,9 @@
<td>{% if error.priority|stringformat:"s" in "123" %}<img src="/media/img/priority-{{ error.priority }}.jpg" title="Priority {{ error.priority }}" />{% endif %}
{% if error.read %}{% else %}<img src="/media/img/read.png" title="Unread" />{% endif %}</td>
<td>{{ error.status }}</td>
<td><abbr title="{{ error.timestamp|date:'d M, Y P' }}">{{ error.timestamp|timesince }}</abbr></td>
<td><time datetime="{{ error.timestamp|date:'c' }}" title="{{ error.timestamp|date:'d M, Y P' }}">{{ error.timestamp|timesince }}</time></td>
<td><a href="{% url error-view error.id %}">{{ error.type }}</a></td>
<td>{{ error.domain }}</td>
<td>{{ error.query|trunc:25 }}</td>
<td title="{{ error.query }}">{{ error.query|trunc:25 }}</td>
</tr>
{% endfor %}