Add entry detail view

This commit is contained in:
Joakim Hellsén 2026-03-24 18:19:29 +01:00
commit ff70afa6c3
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
2 changed files with 53 additions and 1 deletions

View file

@ -12,4 +12,9 @@ if TYPE_CHECKING:
urlpatterns: list[URLPattern | URLResolver] = [
path("", views.feed_list, name="feed-list"),
path("feeds/<int:feed_id>/", views.feed_detail, name="feed-detail"),
path(
"feeds/<int:feed_id>/entries/<int:entry_id>/",
views.entry_detail,
name="entry-detail",
),
]