On 8/15/07, Matt Wilson <[EMAIL PROTECTED]> wrote:
>
> I'm working on a django view for my office's homemade ticket-based
> workflow system.
>
> I have a view that shows all tickets assigned to each employee.
>
> I also have a view that shows all tickets attached to parent tickets.
>
> I want to define just once how to render any arbitrary lists of
> tickets into HTML, and then use that same operation in both places.
>
> In TurboGears, I would build a custom widget, and then use that inside
> my template.  I suspect that the Django community has a similiar tool
> available, but I haven't found it yet.
>
> All comments are welcome.
>
> Matt

I would use an inclusion tag (which should be a one-liner in this
case) for that, passing in the list of tickets to be displayed, like
so:

{% display_tickets ticket_list %}

http://www.djangoproject.com/documentation/templates_python/#inclusion-tags

The benefit over using {% include %} is that it doesn't matter what
context variable name you use for your list of tickets when defining
template context in your views, as your inclusion tag will receive
them as a positional argument.

Regards,
Jonathan.

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