mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Visually distinguish float/int columns, closes #729
This commit is contained in:
parent
fc24edc153
commit
504196341c
4 changed files with 85 additions and 67 deletions
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue