This one was kind of a doozy. This also adds a custom 403 error page and fixes some permission denied behavior that I was having issues with for a while. This is also set up in a way that hopefully will allow me to easily implement user post deletion. Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
37 lines
1.6 KiB
Python
37 lines
1.6 KiB
Python
from django.urls import path
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from board.views import *
|
|
|
|
|
|
app_name = "board"
|
|
urlpatterns = [
|
|
# Board views
|
|
path("<slug:url>/", BoardView.as_view(), name="board_detail"),
|
|
path("<slug:url>/page/<int:page>/", BoardView.as_view(), name="board_detail"),
|
|
path("<slug:url>/post/<int:id>/", PostView.as_view(), name="post_detail"),
|
|
path("<slug:url>/post/create/", PostCreateView.as_view(), name="post_create"),
|
|
path("<slug:url>/reply/<int:id>/", ReplyCreateView.as_view(), name="reply_create"),
|
|
path("post/success/", PostSuccessView.as_view(), name="post_success"),
|
|
# Reports
|
|
path("report/<slug:url>/<int:id>/", ReportView.as_view(), name="report_form"),
|
|
path("report/success/", ReportSuccessView.as_view(), name="report_success"),
|
|
# Bans
|
|
path("ban/<slug:url>/<int:id>/", BanCreateView.as_view(), name="ban_create"),
|
|
path("ban/success/", BanSuccessView.as_view(), name="ban_success"),
|
|
path("banned/", BannedView.as_view(), name="banned"),
|
|
# Other moderation pages
|
|
path("modify/<int:pk>/", PostModifyView.as_view(), name="post_modify"),
|
|
path(
|
|
"modify/success/", PostModifySuccessView.as_view(), name="post_modify_success"
|
|
),
|
|
path("post/delete/<int:pk>/", PostDeleteView.as_view(), name="post_delete"),
|
|
path(
|
|
"post/delete/success/",
|
|
PostDeleteSuccessView.as_view(),
|
|
name="post_delete_success",
|
|
),
|
|
]
|
|
# TODO - make this conditional so we can serve images up with whatever server we want
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|