broke out dashboard into its own app

This commit is contained in:
2022-06-09 18:44:11 -05:00
parent dab163955b
commit c1bbcc3623
10 changed files with 60 additions and 38 deletions

View File

@@ -0,0 +1,7 @@
from django.urls import path
from views import dashboard
urlpatterns = [
path("<int:team_id>/dashboard/", dashboard, name="teamsnap_dashboard"),
path("dashboard/", dashboard, name="teamsnap_dashboard"),
]