from . import views
from django.urls import path
from tolasie.views import audiomin,order,books,bulletin,desk
urlpatterns = [
    # path('index/',main,name="home"),
    path('audio-ministration/',audiomin,name="home"),
    path('written-messages/',books,name="home"),
    path('bulletin/',bulletin,name="home"),
    path('pastors-desk/',desk,name="home"),
    path('<slug:slug>/', views.MessageDetailView.as_view(), name='post_detail'),
    # path('message/<slug:slug>/', views.message, name='post_detail'),
    path('order/',order,name="home"),


]