mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Show total row count at top of table page
This commit is contained in:
parent
eef213ab4d
commit
3eb79e1a5f
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
|||
{% block content %}
|
||||
<h1><a href="/{{ database }}-{{ database_hash }}">{{ database }}</a></h1>
|
||||
|
||||
<h2>{{ table }} ({{ total_rows }} total row{% if total_rows == 1 %}{% else %}s{% endif %} in this table)</h2>
|
||||
<h2>{{ table }}{% if total_rows != None %} ({{ total_rows }} total row{% if total_rows == 1 %}{% else %}s{% endif %} in this table){% endif %}</h2>
|
||||
|
||||
<style>
|
||||
td {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue