django-sql-dashboard icon indicating copy to clipboard operation
django-sql-dashboard copied to clipboard

Django app for building dashboards using raw SQL queries

Results 36 django-sql-dashboard issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

documentation
enhancement

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...

enhancement
question

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...

research

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 ![0D7BC065-585E-458D-A785-B81DFE6F92C7](https://user-images.githubusercontent.com/9599/119728362-3dd0de80-be28-11eb-878c-133e66de5129.jpeg)

tests
refactor

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,...

enhancement

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,...

enhancement

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:...

research