Re: Issues with IE7 and {% for %} {% endfor %} tag

2008-02-22 Thread John M
for those of us who don't know enough about cookies and IE7, could you expand on the issue, and how u found it was cookies please. John On Feb 21, 8:30 am, merric <[EMAIL PROTECTED]> wrote: > It was a cookie issue. I had looked over this... but missed it on > first glance. My apologies > >

Re: Issues with IE7 and {% for %} {% endfor %} tag

2008-02-21 Thread merric
It was a cookie issue. I had looked over this... but missed it on first glance. My apologies MerMer On Feb 21, 4:17 pm, merric <[EMAIL PROTECTED]> wrote: > I've commented out all the HTML on the template, so my template now > reads as follows > > {% for i in prizes %} {{i.id }} {%

Re: Issues with IE7 and {% for %} {% endfor %} tag

2008-02-21 Thread merric
I've commented out all the HTML on the template, so my template now reads as follows {% for i in prizes %} {{i.id }} {% endfor %} There is nothing else on the page except the commented out HTML. In firefox this displays without any problem, in IE7 I get a blank page, even when looking at

Re: Issues with IE7 and {% for %} {% endfor %} tag

2008-02-21 Thread Jonathan Buchanan
On Thu, Feb 21, 2008 at 8:26 AM, merric <[EMAIL PROTECTED]> wrote: > > I have a template that uses {% for i in prize %} {{ i.description }} > {% endfor %} > > This iterates fine in Firefox, but in IE7 it keeps coming up blank. > I can't see any html issues. I am working off my localhost.

Re: Issues with IE7 and {% for %} {% endfor %} tag

2008-02-21 Thread kevinski
> This iterates fine in Firefox, but in IE7 it keeps coming up blank. > I can't see any html issues.  I am working off my localhost.   Is this > a IE7 security issue or something else I have not thought of? I had a the similar problem once with IE7. It ended up being due to CSS incompatibility

Re: Issues with IE7 and {% for %} {% endfor %} tag

2008-02-21 Thread Michael Newman
If that isn't the issue make sure to look at the source HTML. If it is rendering the code then there is something wrong with your styles that IE is hiding your content (Most likely a position:relative float thing). Or you might want to kick apache, sometimes it loads old settings. Last thing that

Re: Issues with IE7 and {% for %} {% endfor %} tag

2008-02-21 Thread David Marquis
Malcom is right, this has absolutely nothing to do with the {% for %} tag. My guess is that your IE7 might be more restrictive on cookies and not allowing the server to create a session cookie. If your view code assumes that there is a session and you fetch "prize" from the session, then

Re: Issues with IE7 and {% for %} {% endfor %} tag

2008-02-21 Thread Malcolm Tredinnick
On Thu, 2008-02-21 at 05:26 -0800, merric wrote: > I have a template that uses {% for i in prize %} {{ i.description }} > {% endfor %} > > This iterates fine in Firefox, but in IE7 it keeps coming up blank. > I can't see any html issues. I am working off my localhost. Is this > a IE7

Issues with IE7 and {% for %} {% endfor %} tag

2008-02-21 Thread merric
I have a template that uses {% for i in prize %} {{ i.description }} {% endfor %} This iterates fine in Firefox, but in IE7 it keeps coming up blank. I can't see any html issues. I am working off my localhost. Is this a IE7 security issue or something else I have not thought of? Cheers