Questions tagged [feincms]

A Django-based CMS with a focus on extensibility and concise code.

From the docs:

FeinCMS is an extremely stupid content management system. It knows nothing about content – just enough to create an admin interface for your own page content types. It lets you reorder page content blocks using a drag-drop interface, and you can add as many content blocks to a region (f.e. the sidebar, the main content region or something else which I haven’t thought of yet). It provides helper functions, which provide ordered lists of page content blocks. That’s all.

Source: FeinCMS

54 questions
0
votes
0 answers

FeinCMS admin - huge page list horribly slow

I maintain a FeinCMS website containing more than 2000 pages. The page list contains a few list-editable checkboxes. Loading the page list takes horribly long (up to 20 seconds) and even much longer with JavaScript enabled. It should be possible to…
Philipp Zedler
  • 1,660
  • 1
  • 17
  • 36
0
votes
1 answer

Imperavi Redactor integration to feincms/admin/

From http://www.feincms.org/why/ FeinCMS comes with a bundled rich text content consisting of a single field. The default editor is a TinyMCE instance. Support for CKEditor is included, and other rich text editors can be easily integrated. I'm…
0
votes
1 answer

Django: wrong redirect

I have a server with two Django/FeinCMS backends. One is on a subdomain like sub.domain.com and the other on domain.com. For each backend I created a page (one called "home", one called "frontpage") and told them to overwrite the url with "/". Now I…
Alexander Scholz
  • 2,100
  • 1
  • 20
  • 35
0
votes
1 answer

Add widget to extension

Is it possible to add/use a widget to/for an extension? def group(cls, admin_cls): cls.add_to_class('group', models.ManyToManyField( Group, widget=????? )) I want to use Django's FilteredSelectMultiple…
nelsonvarela
  • 2,310
  • 7
  • 27
  • 43
0
votes
1 answer

Feincms find page with specific content type

Is there a way to find a page (query) which contains an specific content type. Lets say I have a page (logout) with content type LogoutFormContent. How can I find the page(s) that has LougOutFormContent as content type. I tried to do this: page =…
nelsonvarela
  • 2,310
  • 7
  • 27
  • 43
0
votes
1 answer

How use TreeEditor from feinCMS to my mptt model?

I try simple exsample from here http://www.feinheit.ch/media/labs/feincms/admin.html' models.py: class Locations(MPTTModel): title = models.CharField(max_length=100) parent = TreeForeignKey('self', null=True, blank=True,…
Atterratio
  • 445
  • 2
  • 9
  • 25
0
votes
1 answer

How to install 3rd party app on FeinCMS?

So I am trying to install this: https://zipfelchappe.readthedocs.org/en/latest/ and have followed the steps there I am quite confused on how to pull up the urls file from there For instance I have setup my models.py as below: from django.db import…
tareq
  • 1,329
  • 2
  • 11
  • 16
0
votes
1 answer

How to register custom admin for Feincms page module with custom django AdminSite instance

I try to modify feincms PageAdmin either by subclassing it or patching it. Neither works when I use custom AdminSite instance: MediaLibrary exentsion buttons (they appear after Page.create_content_type(MediaFileContent...) disappear when I do…
Memke
  • 684
  • 1
  • 7
  • 24
0
votes
1 answer

DJANGO: feinCMS missing mptt when trying to sync.db

I'm trying to setup an instance of FeinCMS to check it out. I've added the all the modules under INSTALLED APPS but when I run the command python manage.py syncdb I get the error Import Error: No module named mptt. What am I doing wrong? My…
thedeepfield
  • 6,138
  • 25
  • 72
  • 107
1 2 3
4