52 lines
2.3 KiB
Python
52 lines
2.3 KiB
Python
"""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('searchables/', event_views.searchable_list),
|
|
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('events/', views.events_list, name='events'),
|
|
path('+create-team/', views.create_team, name='create-team'),
|
|
path('teams/', views.teams_list, name='teams'),
|
|
path('team/<int:team_id>/', views.show_team, name='show-team'),
|
|
path('team/<int:team_id>/+edit/', views.edit_team, name='edit-team'),
|
|
path('team/<int:team_id>/+join/', event_views.join_team, name='join-team'),
|
|
path('team/<int:team_id>/+leave/', event_views.leave_team, name='leave-team'),
|
|
path('team/<int:team_id>/+create-event/', views.create_event, name='create-event'),
|
|
path('events/<int:event_id>/+edit/', views.edit_event, name='edit-event'),
|
|
path('events/<int:event_id>/+attend/', event_views.attend_event, name='attend-event'),
|
|
path('events/<int:event_id>/<str:event_slug>/', views.show_event, name='show-event'),
|
|
|
|
path('places/', views.places_list, name='places'),
|
|
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)
|