I have implemented a model where one flow has many events as follows:
class Event(models.Model):
    flow = models.ForeignKey(Flow)
...

I need a page to display one or two fields from a single flow and a list of 
all related events.
Should I implement this with a DetailView, a ListView (if either is 
possible) or just a plain function based view?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c2266570-1806-4778-99ec-666f87f11ec5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to