vfoss_env/lib/python2.7/site-packages/cmsplugin_blog/templates/cmsplugin_blog/entry_detail.html templates/cmsplugin_blog/
* Make a change in the file
{{ object.pub_date|date:"d F Y" }}
12
13 {# with object.placeholders|choose_placeholder:"content" as content #} <-- old
13 {% with object.placeholders|choose_placeholder:"first" as content %} <-- new
14 {% render_placeholder content %}
15 {% endwith %}
'first' is configured as cmsplugin_blog_placeholder in settings.py
159
160 CMSPLUGIN_BLOG_PLACEHOLDERS = ('first', 'second', 'third')
161