Re: Django is changing my html!

2008-12-05 Thread Masklinn
On 5 déc. 08, at 04:19, DragonSlayre <[EMAIL PROTECTED]> wrote: > yes, this fixed the problem. I should change my original title to > "Firefox is changing my html!" > > Thanks for the speedy responses... I was trying to do things *right* > using xhtml standards, but I guess that it's more trou

Re: Django is changing my html!

2008-12-04 Thread David Zhou
On Thu, Dec 4, 2008 at 10:19 PM, DragonSlayre <[EMAIL PROTECTED]> wrote: > > Thanks for the speedy responses... I was trying to do things *right* > using xhtml standards, but I guess that it's more trouble than it's > worth. But you *weren't* doing things right, since you had the inside the . F

Re: Django is changing my html!

2008-12-04 Thread DragonSlayre
yes, this fixed the problem. I should change my original title to "Firefox is changing my html!" Thanks for the speedy responses... I was trying to do things *right* using xhtml standards, but I guess that it's more trouble than it's worth. On Dec 5, 4:10 pm, "Dj Gilcrease" <[EMAIL PROTECTED

Re: Django is changing my html!

2008-12-04 Thread DragonSlayre
If the problem is inside my view, shouldn't the output generated look more like this though: Books What i don't understand, is how 1) ' ' is showing up, and 2) why it doesn't have the tags inside. For 1, I can understand how the problem might be in my view, but

Re: Django is changing my html!

2008-12-04 Thread Dj Gilcrease
Actually it looks like he is just getting extra links, which seems to remind me of a Safari issue and the Doc type that is set. If I remember correctly I ran into an issue similar to this where Safari was attempting to fix my HTML to fit my specified Doc-Type. So if I had to guess I would say that

Re: Django is changing my html!

2008-12-04 Thread Malcolm Tredinnick
On Thu, 2008-12-04 at 18:49 -0800, DragonSlayre wrote: > Hi, > > for some reason my hyperlink is not coming out as I expect it to. > Here is my code in my template: > > > {% for category in categories %} > >{{ category.name }} > > {% endfor %} > > > The outcome is the follo

Django is changing my html!

2008-12-04 Thread DragonSlayre
Hi, for some reason my hyperlink is not coming out as I expect it to. Here is my code in my template: {% for category in categories %} {{ category.name }} {% endfor %} The outcome is the following html code: Books I've checked and I only have one 'little'