22 lines
No EOL
775 B
Python
22 lines
No EOL
775 B
Python
from django.shortcuts import redirect
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'gallery'
|
|
|
|
urlpatterns = [
|
|
|
|
path('', views.AlbumsList.as_view(), name='main_url'),
|
|
path('about/', views.About.as_view(), name='about_url'),
|
|
path('photostream/', views.PhotosList.as_view(), name='photos_url'),
|
|
path('albums/<path:album_slug>/<int:photo_slug>/', views.PhotoDetail.as_view(), name='photo_url'),
|
|
path('albums/<path:album_slug>/', views.AlbumDetail.as_view(), name='album_url'),
|
|
path('albums/', views.AlbumsList.as_view(), name='albums_url'),
|
|
path('<path:redir_path>/', views.redirect_to_album, name='redirect_to_album'),
|
|
]
|
|
|
|
def custom_404_view(request, exception):
|
|
return redirect('/')
|
|
|
|
handler404 = 'gallery.urls.custom_404_view' |