WhisperMaPhone/whispermaphone/urls.py

24 lines
830 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
from thoughts.feed import MainFeed
2021-04-28 02:47:33 +00:00
from whispermaphone import settings
2020-09-06 03:12:54 +00:00
from haystack.views import SearchView, search_view_factory
from haystack.query import SearchQuerySet
from haystack.forms import SearchForm
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("feed", MainFeed()),
path("search", search_view_factory(
view_class=SearchView,
form_class=SearchForm,
searchqueryset=SearchQuerySet().order_by("-posted")
), name="thoughts_search")
2021-04-28 02:47:33 +00:00
] + (static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) if settings.DEBUG else [])