8 lines
168 B
Python
8 lines
168 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'homepage' # Verhindert Konflikt mit anderen Apps
|
|
|
|
urlpatterns = [
|
|
path('', views.home, name="home"),
|
|
] |