Re: Single-line comment doesn't seem to work

2007-08-08 Thread [EMAIL PROTECTED]
Thanks for all the replies! I am using 0.95, maybe that's why it doesn't work. ~cw On Aug 8, 12:42 am, Collin Grady <[EMAIL PROTECTED]> wrote: > What version of django are you using? I seem to remember the single > line comments being added after 0.96, though I could be mistaken.

Re: Single-line comment doesn't seem to work

2007-08-08 Thread Collin Grady
What version of django are you using? I seem to remember the single line comments being added after 0.96, though I could be mistaken. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: Single-line comment doesn't seem to work

2007-08-07 Thread Nicola Larosa
[EMAIL PROTECTED] wrote: > The templates are html...so to comment you would use HTML comments are included in the output that goes to the user, so careful with what you write in there. :-) Django comments, OTOH, do not exit the system. -- Nicola Larosa - http://www.tekNico.net/ These three

Re: Single-line comment doesn't seem to work

2007-08-07 Thread SmileyChris
On Aug 8, 4:12 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > The templates are html...so to comment you would use The templates are rendered by Django, so {##} should work. I just tested it and it's working fine for me... >>> from django.template import Template, Context >>> content

Re: Single-line comment doesn't seem to work

2007-08-07 Thread [EMAIL PROTECTED]
The templates are html...so to comment you would use On Aug 7, 2:32 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I've the following template and when I render it, the single line > comment doesn't get commented out. > Am I missing something; I'm new to Django and just start playing with

Single-line comment doesn't seem to work

2007-08-07 Thread [EMAIL PROTECTED]
I've the following template and when I render it, the single line comment doesn't get commented out. Am I missing something; I'm new to Django and just start playing with the templates. template Test single line and multi-lines comments Test1 hello {# This should be commented out #} hello