django-sql-dashboard
django-sql-dashboard copied to clipboard
Django app for building dashboards using raw SQL queries
Hello again! I've got the dashboard up and running on my site and it's working great. One thing I'd like to do, if possible, is style the dashboard views so...
It looks like this button, which was added in #50, might only be available on unsaved dashboards? Either that or I'm somehow not seeing it on the saved dashboard page...
At the moment custom widgets are selected by changing column names in the query result, but there's no way to customise the widget itself. Some of the things I've found...
I just tried to install `django-sql-dashboard` on an internal project and immediately got an error when going to `/dashboard/`: ``` ValueError: Cannot query "": Must be "Group" instance. ``` After...
> This has made me think that maybe a cool ability would be if you could run a pre-compiled Django SQL Dashboard in its own Docker container and point it...
Via [Podcast.__init__](https://www.pythonpodcast.com/sqlfluff-sql-linter-episode-318/) I learned about a tool called [SQLFluff](https://github.com/sqlfluff/sqlfluff#readme), which appears to be kind of like Black/Prettier/etc, but for SQL. I frequently have trouble formatting SQL in a way that...
From https://twitter.com/webology/status/1397637331667103749 
Since a lot of the tables in a django-sql-dashboard ultimately come from Django models, I thought it would be helpful if the dashboard automatically surfaced the [`help_text`](https://docs.djangoproject.com/en/3.2/ref/models/fields/#help-text) for model fields,...
Since dashboards are each a simple list of SQL queries storing a full history of versions for each one should be really inexpensive. This could provide a full "undo" stack,...
The tests are currently failing. The difference looks to be pytest-django 4.3.0. The last tests that passed show this: ``` platform linux -- Python 3.8.10, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 django: settings:...