Okay, so I have a model that looks like this:

class OpHour( models.Model ):
    days_of_the_week =((0,"Sunday"),
                   (1,"Monday"),
                   (2,"Tuesday"),
                   (3,"Wednesday"),
                   (4,"Thursday"),
                   (5,"Friday"),
                   (6,"Saturday"))
    day = models.IntegerField(max_length=1, choices=days_of_the_week)
    opening_time = models.TimeField()
    closing_time = models.TimeField()

class Location( models.Model ):
    name = models.CharField(max_length=200)
    [...]
    hours = models.ManyToManyField(OpHour)

and I would like to display and edit OpHour as an inline in Location's change page. How do I achieve this using ModelAdmin?

link|improve this question
What have you tried so far? – armonge Nov 19 '11 at 3:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.