from django.urls import path

from core import views_main, views_public, views_slug

app_name = "core"

urlpatterns = [
    path("", views_main.home, name="home"),
    path("about/", views_main.about, name="about"),
    path("help/", views_main.help_page, name="help"),
    path("blog/", views_main.blog, name="blog"),
    path("dashboard/", views_main.dashboard, name="dashboard"),
    path(
        "publico/<str:username>/<slug:review_slug>/",
        views_public.public_review,
        name="public_review",
    ),
    path("<str:username>/<slug:review_slug>/", views_slug.review_home, name="review_home"),
    path("<str:username>/<slug:review_slug>/planning/", views_slug.planning_home, name="planning_home"),
    path("<str:username>/<slug:review_slug>/conducting/", views_slug.conducting_home, name="conducting_home"),
    path("<str:username>/<slug:review_slug>/reporting/", views_slug.reporting_home, name="reporting_home"),
]
