event/views.py
author nishanth
Tue, 20 Apr 2010 23:59:44 +0530
changeset 26 10760aa2cf52
parent 25 4143a8f90b00
child 34 8d0d82c981b3
permissions -rw-r--r--
added close quiz functionality
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
     1
from django.http import Http404
9
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
     2
from django.shortcuts import render_to_response, redirect
6
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
     3
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
     4
from offline.event.models import Event
9
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
     5
from offline.event.forms import EventCreateForm
7
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
     6
from offline.settings import ADMIN_KEY
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
     7
6
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
     8
def event_home(request):
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
     9
    """ The page for people to view.
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    10
    """
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    11
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    12
    try:
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    13
        event = Event.objects.all()[0]
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    14
    except IndexError:
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    15
        raise Http404
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    16
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    17
    ip = request.META['REMOTE_ADDR']
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    18
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    19
    can_submit_feedback = True if event.feedback_status != '0' and \
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    20
            not event.feedback.filter(day=event.feedback_status,user_ip=ip) else False
23
f57c30096b51 added the link on home to attempt quiz
nishanth
parents: 9
diff changeset
    21
    can_take_quiz = True if event.quiz_status != "00" else False
6
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    22
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    23
    return render_to_response('home.html', {'event':event, 'can_submit_feedback':can_submit_feedback, 'can_take_quiz':can_take_quiz})
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 4
diff changeset
    24
9
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    25
def event_admin(request, admin_key):
7
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    26
    """ see if the key is correct and then display options.
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    27
    """
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    28
9
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    29
    if not admin_key == ADMIN_KEY:
7
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    30
        raise Http404
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    31
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    32
    try:
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    33
        event = Event.objects.all()[0]
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    34
    except IndexError:
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    35
        return redirect('/event/create/%s'%ADMIN_KEY)
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    36
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    37
    return render_to_response('admin.html', {'event':event, 'admin_key':ADMIN_KEY})
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    38
    
9
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    39
def event_create(request, admin_key):
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    40
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    41
    if not admin_key == ADMIN_KEY:
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    42
        raise Http404
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    43
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    44
    try:
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    45
        event = Event.objects.all()[0]
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    46
        return redirect("/event/admin/%s"%admin_key)
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    47
    except IndexError:
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    48
        new_event = Event()
7
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    49
9
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    50
    if request.method == "POST":
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    51
        form = EventCreateForm(request.POST)
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    52
        if form.is_valid():
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    53
            new_event.title = form.cleaned_data['title']
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    54
            new_event.start_date = form.cleaned_data['start_date']
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    55
            new_event.stop_date = form.cleaned_data['stop_date']
7
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    56
9
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    57
            new_event.save()
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    58
            return redirect('/event/admin/%s'%ADMIN_KEY)
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    59
        else:
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    60
            return render_to_response('create_event.html',{'form':form})
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    61
    else:
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    62
        form = EventCreateForm()
601057af86c2 implemented event create
nishanth
parents: 7
diff changeset
    63
        return render_to_response('create_event.html',{'form':form})
23
f57c30096b51 added the link on home to attempt quiz
nishanth
parents: 9
diff changeset
    64
f57c30096b51 added the link on home to attempt quiz
nishanth
parents: 9
diff changeset
    65
def open_quiz(request, admin_key):
25
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    66
    """ check for admin and then for quiz status.
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    67
    """
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    68
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    69
    if not admin_key == ADMIN_KEY:
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    70
        raise Http404
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    71
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    72
    try:
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    73
        event = Event.objects.all()[0]
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    74
    except IndexError:
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    75
        return redirect('/event/create/%s'%ADMIN_KEY)
23
f57c30096b51 added the link on home to attempt quiz
nishanth
parents: 9
diff changeset
    76
25
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    77
    if event.quiz_status != "00":
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    78
        return redirect('/event/create/%s'%ADMIN_KEY)
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    79
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    80
    if request.method=="POST":
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    81
        try:
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    82
            quiz_num = request.POST['quiz_num']
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    83
            event.quiz_status = quiz_num
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    84
            event.save()
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    85
            return render_to_response("open_quiz.html",{'success':True})
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    86
        except MultiValueDictKeyError:
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    87
            raise Http404
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    88
    else:
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    89
        return render_to_response("open_quiz.html")
4143a8f90b00 added open quiz functionality
nishanth
parents: 23
diff changeset
    90
   
26
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    91
def close_quiz(request, admin_key):
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    92
    """ check for admin and then for quiz status.
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    93
    """
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    94
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    95
    if not admin_key == ADMIN_KEY:
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    96
        raise Http404
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    97
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    98
    try:
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
    99
        event = Event.objects.all()[0]
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   100
    except IndexError:
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   101
        return redirect('/event/create/%s'%ADMIN_KEY)
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   102
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   103
    if event.quiz_status == "00":
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   104
        return redirect('/event/create/%s'%ADMIN_KEY)
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   105
    
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   106
    event.quiz_status = "00"
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   107
    event.save()
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   108
10760aa2cf52 added close quiz functionality
nishanth
parents: 25
diff changeset
   109
    return render_to_response("close_quiz.html")