mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-30 20:57:07 +01:00
9 lines
269 B
Python
9 lines
269 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name="main-index"),
|
|
path('topic/<str:category>/<str:topic>/', views.topic, name="main-topic"),
|
|
path('category/<str:category>/', views.category, name="main-category"),
|
|
]
|