Top "Inlines" questions

Django admin - inline inlines (or, three model editing at once)

I've got a set of models that look like this: class Page(models.Model): title = models.CharField(max_length=255) class …

python django django-models django-admin inlines
Data binding the TextBlock.Inlines

My WPF App receives a stream of messages from a backend service that I need to display in the UI. …

wpf data-binding textblock inlines
Making inlines conditional in the Django admin

I have a model that I want staff to be able to edit up to the date for the event. …

django django-admin conditional inlines
Django admin different inlines for change and add view

I need separate views for add and change page. In add page I'd like to exclude some fields from inline …

django django-admin django-forms inlines
Django admin - how to save inlines?

I need to override save method of inlines in admin. While saving photos, I need to add user id to …

django django-admin inlines