Questions tagged [django-fluent]

A Django CMS that is flexible to fit your own needs.

Django-Fluent CMS is a Open Source CMS, designed for the following needs:

  • Shape the CMS according to the client's needs.
  • Make any kind of design editable for end-users.
  • Be easy to use
  • Be easy to code with
  • Be usable for small up to large sites

You can install parts of the CMS you like to use, and leave everything else out of your project. The system is designed to perform well (blocks are cached in memcache), models and admin screens can be modified to your needs easily.

Use this tag if your question is about programming issues in regard to:

  • The main modules

    • The page tree; django-fluent-pages
    • The contents engine; django-fluent-contents
    • The admin dashboard; django-fluent-dashboard
    • The blog module; django-fluent-blogs
    • The comments module; django-fluent-comments
  • one of the Support libraries

Copied/adapted from official home page

8 questions
3
votes
0 answers

How to setup django-fluent-comments on Django 1.6?

I am trying to use django-fluent-comments along with Django 1.6. I tried following their github README tutorial for setting it up but some features like threaded comments and AJAX are not working. my settings.py has this INSTALLED_APPS += ( …
3
votes
1 answer

Django + disqus: Comment options below every blog entry

On my site, I am displaying multiple blog entries on one page. I would like to give the users the option to comment below every entry, but django-disqus is giving me a hard time. In my html template, I am rotating through the blog entry items and…
neurix
  • 4,126
  • 6
  • 46
  • 71
3
votes
1 answer

Can not sync my django database after installing django.contrib.comments app

Error that I have: CommandError: One or more models did not validate: comments.comment: Accessor for field 'content_type' clashes with related field 'ContentType.content_type_set_for_comment'. Add a related_name argument to the definition for…
Shyngys Kassymov
  • 718
  • 11
  • 21
1
vote
0 answers

AttributeError at /admin/fluent_comments/fluentcomment/

Try to implement django_fluent_comments. It works perfectly with another clsses, but with News I have the following error (though the classes are mostly similar): AttributeError at /admin/fluent_comments/fluentcomment/ 'News' object has no…
Vasile
  • 801
  • 2
  • 13
  • 31
1
vote
2 answers

FieldError — Unknown field(s): django-fluent-contents

I'm a Python/Django noob. So any help will be appreciated. Trying to use the django-fluent-contents models.py from django.core.urlresolvers import reverse from django.db import models from fluent_contents.models.fields import PlaceholderField,…
mishbah
  • 5,487
  • 5
  • 25
  • 35
1
vote
2 answers

Use django-fluent-dashboard with Django 1.5.1

I'm trying to integrate my Django admin panel with django-fluent-dashbaord so I fallow instruction in documentation: https://django-fluent-dashboard.readthedocs.org/en/latest/installation.html After that I try to launch my admin panel I get…
Gie
  • 1,907
  • 2
  • 24
  • 49
0
votes
1 answer

django-fluent-contents not installing correctly in django.settings.installedApps

Hello fellow programmers, I´m following the steps to install django-fluent-contents from the link https://django-fluent-contents.readthedocs.io/en/latest/ quickstart.html 1- pip install django-fluent-contents 2- Basic setup Next, create a project…
Adriel Werlich
  • 1,982
  • 5
  • 15
  • 30
0
votes
1 answer

In my my project when I installed django-filebrowser some conflicts happened, conflicts in style only not in any functions

In my project I want to integrate fluent_dashborad for the admin interface, when I installed django-filebrowser some conflicts happened, conflicts in style only but not in any functionality. this is my installed apps, INSTALLED_APPS = ( …