Skip to content

Commit

Permalink
Merge pull request #1142 from WesternFriend/fix-tag-url
Browse files Browse the repository at this point in the history
  • Loading branch information
brylie authored Dec 11, 2024
2 parents 4f958f6 + 253f33d commit c84945b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tags/urls.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from django.urls import path
from . import views
from django.urls import re_path

from . import views

app_name = "tags"

urlpatterns = [
path(
"<slug:tag>/",
re_path(
r"^(?P<tag>[\w-]+)/$",
views.TaggedPageListView.as_view(),
name="tagged_page_list",
),
Expand Down

0 comments on commit c84945b

Please sign in to comment.