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
1
vote
0 answers

FeinCMS: Simple Search

I'm trying to build a simple search for my feinCMS page. With the help of this tutorial, I created a search which searchs through all the page titles: def get_results(query_string, search_fields): ''' Returns a query, that is a combination of Q…
Alexander Scholz
  • 2,100
  • 1
  • 20
  • 35
1
vote
0 answers

Local Instance of Django/Feincms not working

I have installed a customer Heroku/Django application locally (Windows 7 machine) to make some modifications and the system uses Feincms and I can't get the pages that utilize it to work. For instance one template page contains the following {%…
Mark Munro
  • 169
  • 1
  • 4
1
vote
0 answers

Creating global header and footer in FeinCMS

Is there a simple way to create a global FeinCMS-editable header and footer for FeinCMS pages? I've used Django-CMS in the past, which supports rendering content from named regions in a named page, allowing child pages to inherit a base template…
Cerin
  • 60,957
  • 96
  • 316
  • 522
1
vote
1 answer

ManagementForm data is missing or has been tampered with

Suddenly, after 7 weeks, I get this error ValidationError: [u'ManagementForm data is missing or has been tampered with'] It worked fine for several weeks. I did not change a thing. This happens when I'm trying to save a page. Stacktrace (most…
nelsonvarela
  • 2,310
  • 7
  • 27
  • 43
1
vote
2 answers

FeinCMS, intermediate model on content type field

I'm trying to accomplish the following: class DownloadContentFiles(models.Model): download_content = models.ForeignKey('DownloadContent') media_file = models.ForeignKey(MediaFile) class DownloadContent(models.Model): files =…
Sander van Leeuwen
  • 2,963
  • 2
  • 22
  • 31
1
vote
1 answer

Customise feincms admin form

I am creating a content from my model using foreign key but I want the object displayed as checkbox or multi select instead of a combo. Some one told me to use feincms_item_editor_form But I am quite unsure how to use it. My model is : class…
mmrs151
  • 3,924
  • 2
  • 34
  • 38
1
vote
1 answer

Django-ckeditor inline error

I'm using FeinCMS (https://github.com/feincms/feincms/) and django-ckeditor with file upload support (https://github.com/shaunsephton/django-ckeditor). I create a FeinCMS content type for RichTextField: class RichContent(models.Model): text =…
ssbb
  • 1,965
  • 2
  • 14
  • 26
0
votes
1 answer

List of Articles form FeinCMS Content Typs

my mission is to get a list of articles. This article come form a simple FeinCMS ContentType. class Article(models.Model): image = models.ForeignKey(MediaFile, blank=True, null=True, help_text=_('Image'), related_name='+',) content =…
Sascha Rau
  • 357
  • 3
  • 12
0
votes
1 answer

Django custom admin action for FeinCMS actions column

I'm making an admin panel for a Django-Mptt tree structure using the FeinCMS TreeEditor interface. This interface provides an 'actions column' per-node for things like adding or moving nodes quickly without using the typical Django admin action…
Chaffelson
  • 1,249
  • 9
  • 20
0
votes
1 answer

Creating tree editor for mptt model in django admin

I'm trying to create a GUI editor for a configuration format using django admin. I don't really need to display anything on the main site, since the data in the admin will be used to generate configuration files. As part of this I need a way to add…
Paul Johnson
  • 1,329
  • 1
  • 12
  • 25
0
votes
1 answer

Feincms, list of created pages with specific template

I'm using feincms for django framework, and i need to get the list of pages that uses specific template. -OR- List of pages from specific hierarchy, i.e: main --1st --2nd --3d --etc. Examples suggested in docs doesn't work, please help.
user2094432
0
votes
1 answer

How should I extend the Django FeinCMS MediaLibrary?

We would like to extend the MediaLibrary of the Django FeinCMS without editing the module code itself. We want a few custom fields and to use a library for individual cropping that we have already. How should we put everything together? The…
Philipp Zedler
  • 1,660
  • 1
  • 17
  • 36
0
votes
1 answer

How to put allow for two different content types as argument in admin

I'm a Django and DB noob, but I'm working on a website that has both blogs and articles. They are instantiated in admin in their own respective fields and basically I have a class "FeaturedPost" in model.py where for one of the attributes "content"…
Ned U
  • 401
  • 2
  • 7
  • 15
0
votes
1 answer

Add Media to FeinCMS extension

I'm new to feincms and trying to write an extension, I wrote a very basic one from __future__ import absolute_import, unicode_literals from django.db import models from django.utils.translation import ugettext_lazy as _ from feincms import…
Jordan Brooklyn
  • 225
  • 1
  • 11
0
votes
1 answer

Accessing feinCMS urls in django templates

I want to create a home page containing a list of feincms pages and linked to their url. I am trying {% url page_obj.get_absolute_url %} which is throwing an error Reverse for '/test/' with arguments '()' The feincms page resides at…
yogkm
  • 649
  • 5
  • 15