Remove Contact app & add about template
This commit is contained in:
parent
3ca3f6616d
commit
1017ca86b7
18 changed files with 40 additions and 183 deletions
|
@ -1,3 +1,4 @@
|
|||
from django.shortcuts import redirect
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
@ -7,9 +8,15 @@ 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'
|
Loading…
Add table
Add a link
Reference in a new issue