On Wed, Apr 30, 2008 at 3:40 PM, Brandon Taylor <[EMAIL PROTECTED]> wrote:
> > Hello everyone, > > I must be missing the forest for the trees, because I simply can't see > what I'm doing wrong here! > > #in views.py > def find_seminar_occurrence(request, slug, id): > occurrence = get_object_or_404(Occurrence, pk=id) > other_occurrences = > Occurrence.objects.filter(seminar=occurrence.seminar).exclude(pk=id) > > ContactForm = form_for_model(Contact) > > if request.method == 'POST': > form = ContactForm(request.POST) > if form.is_valid(): > first_name = form.cleaned_data['first_name'] > last_name = form.cleaned_data['last_name'] > phone = form.cleaned_data['phone'] > email = form.cleaned_data['email'] > seminar = form.cleaned_data['seminar'] > form.save() > > request.session['first_name'] = first_name > request.session['seminar'] = occurrence.seminar > request.session.modified = True > return HttpResponseRedirect('thanks/') > else: > form = ContactForm() > > return render_to_response('seminar_detail.html', locals()) > > > def thanks(request): > first_name = request.session['first_name'] > seminar = request.session['seminar'] > > return render_to_response('thanks.html', {'first_name' : > first_name}) > > > #in thanks.html > {{ first_name }} > > If I do a print first_name in my 'thanks' function, it is empty. What, > oh please someone tell me, am I doing wrong?! > Nothing jumps out at me. If you put a request.session.set_test_cookie() in your code where you set a session variable, what does request.session.test_cookie_worked() return i your thanks function? Karen > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---