Re: Printing out HTML that doesn't get converted to

2008-05-19 Thread James Bennett
On Mon, May 19, 2008 at 12:51 AM, Tomás Garzón Hervás <[EMAIL PROTECTED]> wrote: > I think, you use the {% autoescape off %} text to escape {% endautoescape %} > Search more information of autoescape en django documentation Turning autoescaping on and off for large sections of a template is a

Re: Printing out HTML that doesn't get converted to

2008-05-18 Thread Tomás Garzón Hervás
I think, you use the {% autoescape off %} text to escape {% endautoescape %} Search more information of autoescape en django documentation Gabriel escribió: > Alex gmail.com> writes: > > >> I'm working on my first Django project and I can't seem to get >> information printed out as I would

Re: Printing out HTML that doesn't get converted to

2008-05-16 Thread Gabriel
Alex gmail.com> writes: > > > I'm working on my first Django project and I can't seem to get > information printed out as I would like it. I'm trying to print out > quotes to a page with the newlines turned into HTML tags (similar > to PHP's nl2br function). So far I've been able to do this

Re: Printing out HTML that doesn't get converted to

2008-05-16 Thread Adi J. Sieker
Alex wrote: > I'm working on my first Django project and I can't seem to get > information printed out as I would like it. I'm trying to print out > quotes to a page with the newlines turned into HTML tags (similar > to PHP's nl2br function). So far I've been able to do this using the > __str__

Re: Printing out HTML that doesn't get converted to

2008-05-15 Thread Alex
Wow, that was incredibly simple. Thanks for the help! I have a strong feeling I'm not going back to PHP... --Alex On May 15, 4:47 pm, jonknee <[EMAIL PROTECTED]> wrote: > On May 15, 6:17 pm, Alex <[EMAIL PROTECTED]> wrote: > > > I'm working on my first Django project and I can't seem to get > >

Re: Printing out HTML that doesn't get converted to

2008-05-15 Thread jonknee
On May 15, 6:17 pm, Alex <[EMAIL PROTECTED]> wrote: > I'm working on my first Django project and I can't seem to get > information printed out as I would like it. I'm trying to print out > quotes to a page with the newlines turned into HTML tags (similar > to PHP's nl2br function). You're

Printing out HTML that doesn't get converted to

2008-05-15 Thread Alex
I'm working on my first Django project and I can't seem to get information printed out as I would like it. I'm trying to print out quotes to a page with the newlines turned into HTML tags (similar to PHP's nl2br function). So far I've been able to do this using the __str__ function for the Quote