Permalink
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time.
Cannot retrieve contributors at this time
| from django.conf import settings | |
| from django.urls import include, path | |
| import django.views.static | |
| import django.contrib.auth.views | |
| from django.contrib import admin | |
| urlpatterns = [ | |
| path("", include('evap.evaluation.urls')), | |
| path("staff/", include('evap.staff.urls')), | |
| path("results/", include('evap.results.urls')), | |
| path("student/", include('evap.student.urls')), | |
| path("contributor/", include('evap.contributor.urls')), | |
| path("rewards/", include('evap.rewards.urls')), | |
| path("grades/", include('evap.grades.urls')), | |
| path("logout", django.contrib.auth.views.LogoutView.as_view(next_page="/"), name="django-auth-logout"), | |
| path("admin/", admin.site.urls), | |
| ] | |
| if settings.DEBUG and settings.ENABLE_DEBUG_TOOLBAR: | |
| import debug_toolbar | |
| urlpatterns += [path('__debug__/', include(debug_toolbar.urls))] |