"""
URL configuration for livemenu project.

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/5.2/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path , include
from django.conf import settings
from django.conf.urls.static import static
from core.views import *

urlpatterns = [
    path('admin/', admin.site.urls),
    path('cafes/', cafe_list_view, name='cafe_list'),
    path('cafes/export-sql/<int:cafe_id>/', export_club_sql_view, name='export_club_sql'),
    path('cafes/export-all/<int:cafe_id>/', export_cafe_all_data_view, name='export_cafe_all_data'),
    path('cafes/add-new/', add_cafe_with_owner_view, name='add_cafe_with_owner'),
    path('cafe/<slug:cafe_slug>/users/', cafe_user_list, name='cafe_user_list'),
    path('cafe/<slug:cafe_slug>/update-plan/', update_cafe_plan, name='update_cafe_plan'),

    path('<slug:cafe_slug>/' , include('core.urls'),),

    
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
