Re: dict variable in template

2008-07-04 Thread Dave Smith
On Fri, Jul 4, 2008 at 7:39 PM, Jason <[EMAIL PROTECTED]> wrote: > > Thanks for the replies, everyone. I double-checked my message to make > sure it would be clear. Wonderful! And yet, I posted to the wrong > group :( If I have a follow-up I'll post in the users forum or the > Google App Engin

Re: dict variable in template

2008-07-04 Thread Jason
Thanks for the replies, everyone. I double-checked my message to make sure it would be clear. Wonderful! And yet, I posted to the wrong group :( If I have a follow-up I'll post in the users forum or the Google App Engine forum. On Jul 5, 2:25 am, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrot

Re: dict variable in template

2008-07-04 Thread Malcolm Tredinnick
And I only just noticed you posted to django-dev instead of django-users. This isn't the right list for that. Apologies for answering your question. Malcolm --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django d

Re: dict variable in template

2008-07-04 Thread Malcolm Tredinnick
On Fri, 2008-07-04 at 19:20 -0700, Jason wrote: > Hello, > > I'm a newbie and using Django in the context of Google App Engine. In > my Python code I have: > url = users.create_login_url(self.request.uri) > data['attribute1'] = 10 > data['attribute2'] = 20 > formdata = { > 'data': data, >

Re: dict variable in template

2008-07-04 Thread Russell Keith-Magee
On Sat, Jul 5, 2008 at 10:20 AM, Jason <[EMAIL PROTECTED]> wrote: > > Hello, > > I'm a newbie and using Django in the context of Google App Engine. Hi Jason, 1) Django-developers is a mailing list for discussing the development of django itself, not for general user queries. Questions like this

dict variable in template

2008-07-04 Thread Jason
Hello, I'm a newbie and using Django in the context of Google App Engine. In my Python code I have: url = users.create_login_url(self.request.uri) data['attribute1'] = 10 data['attribute2'] = 20 formdata = { 'data': data, 'url': url, 'attribute_list': [attribute1, attribute2] }