8 lines
163 B
Python
8 lines
163 B
Python
from django.urls import path
|
|
|
|
from schickmacher.renderer.views import form_view
|
|
|
|
app_name = 'renderer'
|
|
urlpatterns = [
|
|
path("", view=form_view, name="form")
|
|
]
|