tags:

views:

25

answers:

1

Hello. I want that objects of one model(Thing, list of everyday things, variable length) will be fields of model Day(date, thing1, thing2, ...). It's possible?

If it's not possible, i will use Day(date, fk->Thing), but how in Django admin interface i may list table, where in column - no of exercise repeats and in row - dates and how edit repeats of all exercises in day?

sorry for bad english.

A: 

read about TabularInline in docs or tutorial

Antony Hatchkins