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

Many thanks for this great package! When creating a dashboard with multiple queries and charts, I'd like to be able to give all or some of them (especially the charts)...

enhancement

It is pointless to run `migrate` before INSTALLED_APPS has been set

I'm trying to explore the functionality of the project for exploring a Postgres database, however I'm encountering the following exception immediately after installation. Maybe I am missing a configuration step?...

question

Passing non-string parameters and default values can be achieved today using something like: ```sql select * where grade >= cast(%(grade)s as integer) and is_allowed = cast(coalesce(nullif(%(is_allowed)s,''), 'true') as boolean) ```...

This fixes #133, but in a funky way. Originally, I thought this would be fairly straightforward: I started by simply removing the conditions for hiding the export buttons if the...

https://twitter.com/getluky/status/1424941270221266946 > These are all great recommendations and would definitely help! Even better would be if the tool could programmatically detect or warn of unsafe configurations...

enhancement

One confusing thing I noticed on my Django deployment is that when a coworker created a dashboard and assigned it a group permission, my own superuser account couldn't see it....

So I was a bit surprised when @simonw mentioned the following in https://github.com/simonw/django-sql-dashboard/issues/133#issuecomment-871895389: > This is deliberate, because the "export all" operation is potentially quite expensive - I don't want...

Hello! I am interested in using django-sql-dashboard to provide access to potentially sensitive information in my Django project. Because the information is particularly sensitive, I'm interested in putting the dashboard's...