Domain detail view

This commit is contained in:
Neil Martinsen-Burrell 2023-03-09 14:53:54 -06:00
parent bd897695d7
commit b8f3d9bc5d
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
6 changed files with 30 additions and 2 deletions

View file

@ -62,6 +62,7 @@ urlpatterns = [
lambda r: always_404(r, "We forgot to include this link, sorry."),
name="todo",
),
path("domain/<int:pk>", views.DomainView.as_view(), name="domain"),
]