#!/usr/bin/env python # encoding: utf-8 """ @version: ?? @author: liangliangyy @license: MIT Licence @contact: liangliangyy@gmail.com @site: https://www.lylinux.org/ @software: PyCharm @file: urls.py @time: 2016/11/2 下午7:15 """ from django.urls import path from django.views.decorators.cache import cache_page from . import views from haystack.forms import ModelSearchForm from haystack.query import SearchQuerySet from haystack.views import SearchView app_name = "blog" urlpatterns = [ path(r'', views.IndexView.as_view(), name='index'), path(r'page//', views.IndexView.as_view(), name='index_page'), path(r'article////.html', views.ArticleDetailView.as_view(), name='detailbyid'), path(r'category/.html', views.CategoryDetailView.as_view(), name='category_detail'), path(r'category//.html', views.CategoryDetailView.as_view(), name='category_detail_page'), path(r'author/.html', views.AuthorDetailView.as_view(), name='author_detail'), path(r'author//.html', views.AuthorDetailView.as_view(), name='author_detail_page'), path(r'tag/.html', views.TagDetailView.as_view(), name='tag_detail'), path(r'tag//).html', views.TagDetailView.as_view(), name='tag_detail_page'), path('archives.html', views.ArchivesView.as_view(), name='archives'), path(r'upload', views.fileupload, name='upload'), path(r'refresh', views.refresh_memcache, name='refresh') ]