12 lines
346 B
Python
12 lines
346 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='index'),
|
|
path('post/repo', views.post_repo, name='repo'),
|
|
path('post/archive', views.post_archive, name='archive'),
|
|
path('post/error', views.post_error, name='error'),
|
|
path('post/location', views.post_location, name='location'),
|
|
]
|