event/views.py
author nishanth
Tue, 20 Apr 2010 23:29:44 +0530
changeset 23 f57c30096b51
parent 9 601057af86c2
child 25 4143a8f90b00
permissions -rw-r--r--
added the link on home to attempt quiz
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):
f57c30096b51 added the link on home to attempt quiz
nishanth
parents: 9
diff changeset
    66
    pass
f57c30096b51 added the link on home to attempt quiz
nishanth
parents: 9
diff changeset
    67