diff options
author | Parth Buch | 2012-06-18 16:59:44 +0530 |
---|---|---|
committer | Parth Buch | 2012-06-18 16:59:44 +0530 |
commit | c6104f941b5027a6c170e66abd28e45f2c42f92b (patch) | |
tree | 2cbd9449d3fbc88b2954b8bad6e7d04a0d88dfd6 /stapp/video/views.py | |
parent | ee03c66e02e5ae1e83508e635404b879fea8a23f (diff) | |
download | stproject-c6104f941b5027a6c170e66abd28e45f2c42f92b.tar.gz stproject-c6104f941b5027a6c170e66abd28e45f2c42f92b.tar.bz2 stproject-c6104f941b5027a6c170e66abd28e45f2c42f92b.zip |
Removed the authentication codes
Diffstat (limited to 'stapp/video/views.py')
-rw-r--r-- | stapp/video/views.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stapp/video/views.py b/stapp/video/views.py index 2144592..8361b9f 100644 --- a/stapp/video/views.py +++ b/stapp/video/views.py @@ -1,8 +1,7 @@ from django.http import HttpResponse from django.template import RequestContext from django.shortcuts import render_to_response, get_object_or_404, redirect -from video.models import * - +from video.models import Video def show(request,video_id=None): videos = Video.objects.all() |