Visually distinguish float/int columns, closes #729

This commit is contained in:
Simon Willison 2020-05-14 22:51:39 -07:00
commit 504196341c
4 changed files with 85 additions and 67 deletions

View file

@ -21,7 +21,7 @@
{% for row in display_rows %}
<tr>
{% for cell in row %}
<td class="col-{{ cell.column|to_css_class }}">{{ cell.value }}</td>
<td class="col-{{ cell.column|to_css_class }} type-{{ cell.value_type }}">{{ cell.value }}</td>
{% endfor %}
</tr>
{% endfor %}