1

Many 'reusable apps' require django-sites. There is annoying field "publish on" in admin interface, which I can't exclude because it has no default parameter (so the entry will be published nowhere. I tried). The model is described in the 'reusable app' so I don't want to change it.

How can I get rid of this annoying field?

Valentin Golev
  • 9,965
  • 10
  • 60
  • 84

1 Answers1

1

Catching the pre_save signal will allow you to inject a default value.

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358