from django.urls import path from django.conf import settings from django.conf.urls.static import static from django.views.generic.base import TemplateView from board.views import * app_name = "board" urlpatterns = [ path("/", BoardView.as_view(), name="board_detail"), path("/page//", BoardView.as_view(), name="board_detail"), path("/post//", PostView.as_view(), name="post_detail"), path("/report//", ReportView.as_view(), name="report_form"), path( "report/success/", TemplateView.as_view(template_name="board/report_success.html"), name="report_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)