Klaus-Uwe Mitterer
54e84be36a
Copy over payment system from kumi.xxx Add missing requirements Other stuff
9 lines
No EOL
146 B
Python
9 lines
No EOL
146 B
Python
from django.urls import path
|
|
|
|
from .views import HomeView
|
|
|
|
app_name = "frontend"
|
|
|
|
urlpatterns = [
|
|
path('', HomeView.as_view(), name="home"),
|
|
] |