summaryrefslogtreecommitdiff
path: root/app/guides/guide_urls.py
blob: ad670611f69f29af165b099ed818e68e5f326535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from django.urls import path, re_path

from . import views

app_name = "guide"

urlpatterns = [
    path(
        r'<str:slug>',
        views.GuideDetailView.as_view(),
        name="guide-detail"
    ),
    path(
        r'<str:slug>.txt',
        views.GuideDetailViewTXT.as_view(),
        name="guide-detail-txt"
    ),
]