mirror of
https://github.com/openspug/spug.git
synced 2026-01-25 15:02:04 +00:00
10 lines
188 B
Python
10 lines
188 B
Python
from django.conf.urls import url
|
|
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
url(r'^$', Schedule.as_view()),
|
|
path('<int:t_id>/', ScheduleInfo.as_view()),
|
|
]
|