Plankton_Detector/PlanktonDetector/Community/urls.py
2024-01-06 14:14:15 +01:00

11 lines
416 B
Python

from django.urls import path
from django.conf import settings
from django.conf.urls.static import static
from . import views
urlpatterns = [
path("posts/", views.ListPosts.as_view(), name="posts"),
path("posts/<int:pk>", views.PostDetails.as_view(), name="post-details"),
path("posts/create/", views.AddPost.as_view(), name="add_post"),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)