1 # Create your views here.
4 log = logging.getLogger('platforma.bookthemes')
6 from django.http import HttpResponse
7 from django.utils import simplejson as json
8 from bookthemes.models import Theme
11 themes = Theme.objects.all().values_list('name', flat=True).order_by('name')
13 return HttpResponse(json.dumps(list(themes)), mimetype="application/json")