mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-04 05:12:22 +00:00
Fix long line
This commit is contained in:
parent
36605efd20
commit
6b97702cc4
1 changed files with 3 additions and 1 deletions
|
@ -29,7 +29,9 @@ from bookwyrm.utils import regex
|
||||||
class Dashboard(View):
|
class Dashboard(View):
|
||||||
"""admin overview"""
|
"""admin overview"""
|
||||||
|
|
||||||
@csp_update(SCRIPT_SRC='https://cdn.jsdelivr.net/npm/chart.js@3.5.1/dist/chart.min.js')
|
@csp_update(
|
||||||
|
SCRIPT_SRC="https://cdn.jsdelivr.net/npm/chart.js@3.5.1/dist/chart.min.js"
|
||||||
|
)
|
||||||
def get(self, request):
|
def get(self, request):
|
||||||
"""list of users"""
|
"""list of users"""
|
||||||
data = get_charts_and_stats(request)
|
data = get_charts_and_stats(request)
|
||||||
|
|
Loading…
Reference in a new issue