Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7960465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T04:45:46+00:00 2026-06-04T04:45:46+00:00

Why can’t I see the blog entries I have made using cmsplugin blog for

  • 0

Why can’t I see the blog entries I have made using cmsplugin blog for Django-cms?

I have django-cms setup on a development server (localhost). I installed cmsplugin using the instructions documented here.

When I go to “http://localhost:8000/admin/” Cmsplugin_Blog appears under site administration. From the entries page I am presented with an overview of the entries I have made. Editing an individual entry, I can add a plugin (text) and add text for that entry. I then make sure that the the particular entry is published.

Going to my blog page (CMS->Pages) I then choose cmsplugin_blog and add the latest entries plugin (I can not see any other relevant plugins). Finally I choose advanced settings -> Application -> Blog Apphook (and save). When I preview the blog page I can only see the dates of the last entries and the headings of the entries.

I’m not sure if it’s something I did wrong within my setup so I included the process I went through to set up cmsplugin.

I edited INSTALLED_APPS in settings.py :

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.admin',
    'django.contrib.sites',
    'cms',
    'cms.plugins.text',
    'cms.plugins.picture',
    'cms.plugins.link',
    'cms.plugins.file',
    'cms.plugins.flash',
    'cms.plugins.googlemap',
    'cms.plugins.teaser',
    'cms.plugins.video',
    'cms.plugins.twitter',
    'cms.plugins.snippet',
    'cms.plugins.inherit',
    'cmsplugin_contact',
    'cmsplugin_gallery',
    'mptt',
    'menus',
    'south',
    'sekizai',
    'cmsplugin_blog',
    'djangocms_utils',
    'simple_translation',
    'tagging',
    'django.contrib.staticfiles',
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
)    

And also added:

JQUERY_JS = 'https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'
JQUERY_UI_JS = 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js'
JQUERY_UI_CSS ='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/themes/smoothness/jquery-ui.css'


JQUERY_UI = '/path/to/jquery/'
JQUERY_JS = '%sjs/jquery-1.4.4.min.js' % JQUERY_UI
JQUERY_UI_JS = '%sjs/jquery-ui-1.8.9.custom.min.js' % JQUERY_UI
JQUERY_UI_CSS = '%scss/smoothness/jquery-ui-1.8.9.custom.css' % JQUERY_UI

CMSPLUGIN_BLOG_PLACEHOLDERS = ('first', 'second', 'third')

CMS_TEMPLATES = (
    ('template_1.html', 'Template One'),
    ('template_2.html', 'Template Two'),
    ('footer.html','Template Footer'),
    ('sidebar.html','Template Sidebar'),
    ('cmsplugin_blog/cmsplugin_blog_base.html','cmsplugin_blog'),

)

I the created a template “cmsplugin_blog/cmsplugin_blog_base.html”:

 {% extends "base.html" %}

{% block body %}
    {% block left-col %}{% endblock %}
    {% block right-col %}{% endblock %}
{% endblock %}

And then ran:

python manage.py syncdb

After having the problem described in my question I created a new template view_detail.html:

{% extends "cmsplugin_blog/cmsplugin_blog_base.html" %}

{% load placeholder_tags cmsplugin_blog_tags simple_translation_tags %}


{% block left-col %}
{{ block.super }}

<h1>{% with object|get_preferred_translation_from_request:request as title %}{{ title }}{% endwith %}</h1>

<p class="date"><span>{{ object.pub_date|date:"d F Y" }}</span></p>

{% with object.placeholders|choose_placeholder:"content" as content %}
    {% render_placeholder content %}
{% endwith %}

{% endblock %}

{% block right-col %}

{% render_author_links %}

{% render_month_links %}

{% render_tag_links %}

{% endblock %}

However, when I attempt to use this template in the cms I am not able to add any plugins to the page and I still have the original problem. This is a full copy of my settings.py for reference.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T04:45:47+00:00Added an answer on June 4, 2026 at 4:45 am

    I had the same problem. When I change ‘content’ in the following line in cmsplugin_blog/templates/cmsplugin_blog/entry_detail.html then the ‘first’ placeholder is rendered as blog content:

    {% with object.placeholders|choose_placeholder:"content" as content %}
    

    new line:

    {% with object.placeholders|choose_placeholder:"first" as content %}
    

    I do not have enough experience with django to understand what causes this, hope someone can provide more clues.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jquery bug and I've been looking for hours now, I can't
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
Can PHP PDO extension bind nested objects automatically ? I mean using foreign key
Can't figure out how to do this in a pretty way : I have
Can you have submenus with the top level set to checkable in WPF? I
Can we close all known/unknown connections to database with the code? I'm using Access
Can I convert a pdf to pcl file with ghostscript? I'm using Ghostscript 9.01
Can someone tell me the regex to see if something is surrounded in double
Can anyone see why this form is being submitted in the normal fashion and
can anyone help me in trying to check whether JavaScript is enabled in client

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.