You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A set of SQL queries can be used to create a saved dashboard. Saved dashboards have URLs and support permissions, so you can specify which users are allowed to see which dashboard.
4
+
5
+
Saved dashboards currently need to be created using the Django Admin interface.
6
+
7
+
Available view permissions are as follows:
8
+
9
+
-`private`: Only the user who created (owns) the dashboard can view
10
+
-`public`: Any user can view
11
+
-`unlisted`: Any user can view, but they need to know the URL (this feature is not complete)
12
+
-`loggedin`: Any logged-in user can view
13
+
-`group`: Any user who is a member of the `view_group` attached to the dashboard can view
14
+
-`staff`: Any user who is staff can view
15
+
-`superuser`: Any user who is a superuser can view
16
+
17
+
Edit permissions exist in the admin interface but do not yet do anything. Follow [#27](https://github.com/simonw/django-sql-dashboard/issues/27) for progress on this.
0 commit comments