You just need something like:
 {% for p in object.events.all %}
      {% if p.event_name %}
          <td>{{ p.event_name }},</td>
      {% else %}><td></td>
      {% endif %}
 {% endfor %}

You could put the whole row in the IF, if you like.


On Jun 12, 8:55 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> I think that requires more logic in the template than possible.
>
> My brain says tot do exactly what you suggest.  But my template looks
> similar to this:
>                 {% for p in object.events.all %}
>                 <td>
>                         {{ p.event_name }},
>                 </td>
>                 {% endfor %}
>
> If the Member isn't registered to one of the events, then I don't get
> a <td></td> for that event, and it throws off the rest of the format
> for the table...
>
> On Jun 12, 6:32 pm, Kelvin Nicholson <[EMAIL PROTECTED]> wrote:
>
> > [snip
>
> > > The trouble I'm having is, if someone is not assigned to an event, I
> > > get nothing displayed (duh, there's not an event); except I'm
> > > displaying this in a table, and if I don't have any data, then the
> > > cell formatting doesn't line up correctly.
>
> > [snip]
>
> > I just quickly perused your email; if the only problem you are having is
> > the loop creating the table row/column when there isn't any actual data,
> > couldn't you just create an {% if object %} in the template, and adjust
> > the formatting accordingly?
>
> > Just a quick thought,
> > Kelvin


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to