File: views.py

package info (click to toggle)
python-django-debug-toolbar 1%3A0%2Bgit201107220111-96e46c6-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,300 kB
  • sloc: python: 3,857; makefile: 34
file content (7 lines) | stat: -rw-r--r-- 167 bytes parent folder | download
1
2
3
4
5
6
7
from django.contrib.auth.models import User
from django.http import HttpResponse

def execute_sql(request):
    list(User.objects.all())
    
    return HttpResponse()