2

I'd like to disable the option to move FeinCMS contenttypes whithin a region. Does anyone have any suggestions how to accomplish this?

Paolo
  • 20,112
  • 21
  • 72
  • 113

1 Answers1

2

No, that's not possible currently.

What's the reasoning behind this feature request?

Matthias Kestenholz
  • 3,300
  • 1
  • 21
  • 26
  • Ok. Well, we are building a website for multiple countries. There will be one master version where normal editing can be done. The countries may only edit certain values. We don't want them to be able to move stuff around. – Sander van Leeuwen Aug 08 '11 at 08:55
  • You could add another AdminSite instance, and add ModelAdmin subclasses containing only the necessary fields for them. Use your own forms (ModelAdmin.form) and your own querysets (ModelAdmin.get_query_set). Register the ModelAdmin subclass as follows: admin.site.register(Page.content_type_for(YourContentType), YourContentTypeModelAdmin) -- this should work. – Matthias Kestenholz Aug 29 '11 at 12:26