This repository has been archived on 2019-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
tofu/projects/urls.py

10 lines
221 B
Python

from django.urls import path
from . import views
app_name = 'projects'
urlpatterns = [
path('', views.IndexView.as_view(), name='index'),
path('<slug:project_key>/', views.ProjectView.as_view(), name='view'),
]