Jarvis/jarvis/core/urls.py

29 lines
590 B
Python
Raw Normal View History

2023-04-25 17:06:14 +02:00
from django.urls import path
2023-05-20 19:33:47 +02:00
from .views import (
login,
logout,
home,
search,
report_listing,
generate_best_straightjump_listing,
)
2023-04-25 17:06:14 +02:00
urlpatterns = [
path(
r"core/record_straightjump/",
generate_best_straightjump_listing,
name="generate_best_straightjump_listing",
),
2023-05-20 19:33:47 +02:00
path(
r"core/report/",
report_listing,
name="report",
),
2023-04-25 17:06:14 +02:00
path(r"search/", search, name="global_search"),
path(r"login/", login, name="login"),
path(r"logout/", logout, name="logout"),
path(r"", home, name="home"),
]