ok first of all, thanks for your patience and your help.  I'm making
solid progress.  So that I can learn how to program in Django as
efficiently as possible... is there a better way to pass session data
back to a template?  Here's what i'm currently doing...


def DoPayInfoForm (request):

    # capture session vars for passing to template
    AccountNum = request.session['AccountNum']
    NameOnAcct = request.session['NameOnAcct']
    Email = request.session['Email']
    Phone = request.session['Phone']
    NameOnCard = request.session['NameOnCard']
    Street1 = request.session['Street1']
    Street2 = request.session['Street2']
    City = request.session['City']
    State = request.session['State']
    ZipCode = request.session['ZipCode']


   [ snip ]

    return render_to_response('step2.html',{'AccountNum': AccountNum,
'NameOnAcct': NameOnAcct, 'Email': Email, 'Phone': Phone,
'NameOnCard': NameOnCard, 'Street1': Street1, 'Street2': Street2,
'City': City, 'State': State, 'ZipCode': ZipCode,  'form': form},
context_instance=RequestContext(request))

I guess i'm wondering if there is a better way to pass the session
data back the template.... doing it this way works, but it's sloppy
and will get really repetitious



--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to