willhardy / django-seo

Provides a set of tools for managing Search Engine Optimisation (SEO) for Django sites.
BSD 3-Clause "New" or "Revised" License
251 stars 117 forks source link

`seo_models` and admin inlines #7

Closed willhardy closed 13 years ago

willhardy commented 13 years ago

There is currently a problem with models listed in seo_models automatically creating metadata before admin inlines can save their inline metadata.

The current documented approach of not listing the model in seo_models if you wish to use admin inlines works fine, except that the metadata in "model metadata" will never be found because no "model instance metadata" is present.

Ideally, inlines would always create (sometimes empty) metadata for a model instance.

willhardy commented 13 years ago

Fixed, inlines always create a (sometimes empty) "model instance metadata" instance.