summaryrefslogtreecommitdiff
path: root/app/sightings/urls.py
blob: 51b29d7202b90fd88b81870efbb0a0826bf3ea69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from django.urls import path
from . import views

app_name = "sightings"

urlpatterns = [
    path(
        r'', 
        views.SightingListView.as_view(),
        {'page':1},
        name="list"
    ),
    path(
        r'<int:page>/', 
        views.SightingListView.as_view(),
        name="list"
    ),
    path(
        r'<str:slug>',
        views.SightingDetailView.as_view(),
        name='detail'
    ),
    path(
        r'<str:user>/', 
        views.SightingListUserView.as_view(),
        {'page':1},
        name='list_by_person'
    ),
    path(
        r'<str:user>/<int:page>/',
        views.SightingListUserView.as_view(),
        name='list_by_person'
    ),
]