Skip to content
This repository has been archived by the owner on Apr 18, 2018. It is now read-only.

Commit

Permalink
Remove title text from <td>'s
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Lucas committed Feb 22, 2012
1 parent 1a2ef17 commit 7c810eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/report.html
Expand Up @@ -26,7 +26,7 @@
{% for datum in data %}
<tr class="hoverable">
{% for c in columns %}
<td class="{{c.css_class}}" title="{{escape(c.display)}}">{{ c.format(getattr(datum, c.name)) }}</td>
<td class="{{c.css_class}}">{{ c.format(getattr(datum, c.name)) }}</td>
{% end %}
</tr>
{% end %}
Expand Down

0 comments on commit 7c810eb

Please sign in to comment.