Usunięcie nieużywanej już aplikacji bookthemes.
[redakcja.git] / apps / bookthemes / views.py
diff --git a/apps/bookthemes/views.py b/apps/bookthemes/views.py
deleted file mode 100755 (executable)
index 2bf5a77..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# Create your views here.
-
-import logging
-log = logging.getLogger('platforma.bookthemes')
-
-from django.http import HttpResponse
-from django.utils import simplejson as json
-from bookthemes.models import Theme
-
-def index(request):
-    themes = Theme.objects.all().values_list('name', flat=True).order_by('name')
-    
-    return HttpResponse(json.dumps(list(themes)), mimetype="application/json")
-
-
-    
\ No newline at end of file