"""get_together URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.0/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 events import views as event_views from . import views urlpatterns = [ path('', views.home, name='home'), path('admin/', admin.site.urls), path('login/', views.login, name='login'), path('logout/', views.logout, name='logout'), path('searchables/', event_views.searchable_list, name='searchables'), path('api/places/', event_views.places_list), path('api/countries/', event_views.country_list), path('api/spr/', event_views.spr_list), path('api/cities/', event_views.city_list), path('api/find_city/', event_views.find_city), path('profile/+edit', views.edit_profile, name='edit-profile'), path('events/', views.events_list, name='events'), path('+create-team/', views.create_team, name='create-team'), path('teams/', views.teams_list, name='teams'), path('team//', views.show_team, name='show-team'), path('team//+edit/', views.edit_team, name='edit-team'), path('team//+join/', event_views.join_team, name='join-team'), path('team//+leave/', event_views.leave_team, name='leave-team'), path('team//+delete/', views.delete_team, name='delete-team'), path('team//+create-event/', views.create_event, name='create-event'), path('events//+edit/', views.edit_event, name='edit-event'), path('events//+attend/', event_views.attend_event, name='attend-event'), path('events//+delete/', views.delete_event, name='delete-event'), path('events//+add_place/', views.add_place_to_event, name='add-place'), path('events//+share/', views.share_event, name='share-event'), path('events///', views.show_event, name='show-event'), path('places/', views.places_list, name='places'), path('places//', views.show_place, name='show-place'), path('+create-place/', views.create_place, name='create-place'), path('oauth/', include('social_django.urls', namespace='social')), ] if settings.DEBUG: urlpatterns = urlpatterns + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)