diff options
author | luxagraf <sng@luxagraf.net> | 2020-12-02 15:02:12 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-12-02 15:02:12 -0500 |
commit | ab8055b5cab2523d925f59c65bc38df103a26991 (patch) | |
tree | 29e4597bc0d86d658f574c0c4f0b036351a68742 /app/unused_apps/projects/urls.py | |
parent | 87f692178a6e30719c564076f00c206642f36ce6 (diff) |
deleted old apps and media
Diffstat (limited to 'app/unused_apps/projects/urls.py')
-rw-r--r-- | app/unused_apps/projects/urls.py | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/app/unused_apps/projects/urls.py b/app/unused_apps/projects/urls.py deleted file mode 100644 index 8e56b16..0000000 --- a/app/unused_apps/projects/urls.py +++ /dev/null @@ -1,29 +0,0 @@ -from django.conf.urls import url -from django.views.generic import ListView -from projects.models.base import Project - -from . import views - -app_name = "project" - -urlpatterns = [ - url( - r'data/(?P<id>\d+)/$', - views.data_json - ), - url( - r'gifs/(?P<slug>[-\w]+)/$', - views.gif_detail - ), - url( - r'(?P<slug>[-\w]+)/$', - views.detail - ), - url( - r'^$', - ListView.as_view( - queryset=Project.objects.filter(status__exact=1).order_by('-pub_date'), - template_name="archives/projects.html", - ) - ), -] |