simonw / django-sql-dashboard

Django app for building dashboards using raw SQL queries
https://django-sql-dashboard.datasette.io/
Apache License 2.0
437 stars 37 forks source link

Implement big number dashboard widget #11

Closed simonw closed 3 years ago

simonw commented 3 years ago

Proposed design:

select 'Signups today' as big_number_label,
count(*) as big_number
from signups where created > now() - interval '1 day';
simonw commented 3 years ago

This would result in the usual table being replaced by a big number in a box.