rakkapy/comment/urls.py

7 lines
146 B
Python
Raw Permalink Normal View History

from django.urls import include, path
from . import views
urlpatterns=[
path('',views.look,name='look'),
path('new',views.submit,name='new'),
]