Hi I'm working on extending a forum app to allow for email subscriptions. http://code.google.com/p/django-forum/issues/list
I'm running into one fairly simple issue and thought someone might be able to enlighten me. Here's part of my model: http://dpaste.com/34401/ And here's the template logic: http://dpaste.com/34400/ {% for t in threads %} <tr> <td><a href='{{ t.forum.get_absolute_url }}'>{{ t.forum.title }}</a></ td> <td>{% if t.sticky %}Sticky {% endif %}<a href='{{ t.get_absolute_url }}'>{{ t.title }}</a>{% if t.closed %} (Closed){% endif %}</td> <td><input type='checkbox' {% if user.subscription_set.all %}checked='checked'{% endif %} /></td> </tr> {% endfor %} user.subscription_set.all isn't specific enough because I actually need to query on user AND thread. So does is there no easy way around a template tag? Thanks for you suggestions, Milan --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---