Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
10 lines
135 B
Python
10 lines
135 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "permission"
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
]
|