On Jun 29, 12:20 pm, Carl Karsten <[EMAIL PROTECTED]> wrote: > for instance, how can I make this: > > <td{% if not day.in_month %} class="cal_not_in_month"{% endif %} > {% ifequal day.day day.today %} class="today"{% endifequal %}> > > Not put the CR inside the <td> ?
Is that line broken by a line break inserted by you? I would think this would achieve your desired result (the following contains no line breaks by me): <td{% if not day.in_month %} class="cal_not_in_month"{% endif %}{% ifequal day.day day.today %} class="today"{% endifequal %}> I might be missing something here... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---