feedback/views.py
author nishanth
Mon, 12 Apr 2010 11:23:27 +0530
changeset 11 334550460bd7
parent 10 c52d170969f0
child 35 79dc44b6edd4
permissions -rw-r--r--
added the view event functionality and submitting feedback according to the status .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
     1
from django.shortcuts import render_to_response, redirect
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
     2
11
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
     3
from workshop.reg.models import Event
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
     4
5
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
     5
from workshop.feedback.models import Feedback
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
     6
from workshop.feedback.forms import FeedbackForm
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
     7
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
     8
from django.http import HttpResponse
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
     9
10
c52d170969f0 quite a few changes. modified models and feedback views .
nishanth
parents: 5
diff changeset
    10
def submit_feedback(request, event_key):
5
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    11
    """ see if the ip address has already submitted a feedback.
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    12
    if not, collect the feedback.
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    13
    """
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    14
11
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    15
    try:
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    16
        event = Event.objects.get(key=event_key)
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    17
    except Event.DoesNotExist:
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    18
        return redirect('/reg')
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    19
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    20
    if event.feedback_status == "0":
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    21
        return redirect('/reg')
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    22
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    23
    user_ip = request.META["REMOTE_ADDR"]
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    24
    try:
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    25
        old_feedback = Feedback.objects.get(day=event.feedback_status, user_ip=user_ip)
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    26
        return render_to_response('feedback.html', {'submitted':True})
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    27
    except:
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    28
        new_feedback = Feedback(event=event, user_ip=user_ip, day=event.feedback_status)
5
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    29
    
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    30
    if request.method == "POST":
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    31
        form = FeedbackForm(request.POST)
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    32
        if form.is_valid():
11
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    33
            data = form.cleaned_data
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    34
            new_feedback.topics = data['topics']  
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    35
            new_feedback.depth = data['depth']
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    36
            new_feedback.methodology = data['methodology']
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    37
            new_feedback.pace = data['pace']
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    38
            new_feedback.applicability = data['applicability']
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    39
            new_feedback.problems = data['problems']
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    40
            new_feedback.exercises = data['exercises']
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    41
            new_feedback.comments = data['comments']
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    42
            new_feedback.save()
334550460bd7 added the view event functionality and submitting feedback according to the status .
nishanth
parents: 10
diff changeset
    43
            return render_to_response('feedback.html', {'submitted':True})
5
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    44
        else:
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    45
            return render_to_response('feedback.html',{'form':form})
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    46
    else:
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    47
        form = FeedbackForm()
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    48
        return render_to_response('feedback.html',{'form':form})
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    49
10
c52d170969f0 quite a few changes. modified models and feedback views .
nishanth
parents: 5
diff changeset
    50
def list_feedbacks(request, event_key):
5
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    51
    """ print a list of all the feedbacks collected.
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    52
    """
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    53
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    54
    feeds = Feedback.objects.all()
37e4027fba48 submit and list feedback done
nishanth
parents: 0
diff changeset
    55
    return render_to_response('list_feedbacks.html',{'feeds':feeds})