WhisperMaPhone/whispermaphone/urls.py

15 lines
545 B
Python
Raw Normal View History

2021-04-28 02:47:33 +00:00
from django.conf.urls.static import static
2021-10-21 14:00:25 +00:00
from django.urls import path, include
2020-09-06 02:00:45 +00:00
from thoughts import views
2021-04-28 02:47:33 +00:00
from whispermaphone import settings
2020-09-06 03:12:54 +00:00
2020-09-06 02:00:45 +00:00
urlpatterns = [
2020-09-06 03:38:15 +00:00
path("", views.index, name="index"),
path("about", views.about, name="about"),
path("login", views.login, name="login"),
path("post", views.post, name="post"),
path("search", views.search, name="thoughts_search"),
path('__debug__/', include('debug_toolbar.urls')),
2021-04-28 02:47:33 +00:00
] + (static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) if settings.DEBUG else [])