Questions tagged [zinnia]

Zinnia is a django package that provides a simple yet powerful and really extendable application for managing a blog within your Django Web site.

Zinnia is a django package that provides a simple yet powerful and really extendable application for managing a blog within your Django Web site.

References

75 questions
2
votes
2 answers

Django passing HTML objects into template as plain text

This feels like a really silly issue, but I'm confused by the behavior of django-zinnia, a blog creation module. When I test enter a plain text post, it appends each sentence with html < p > tags the browser doesn't read as html. Example, if I enter…
Chris B.
  • 1,505
  • 5
  • 26
  • 48
2
votes
2 answers

How do I extend django zinnia weblog entry

I followed the instruction found here http://django-blog-zinnia.readthedocs.org/en/latest/how-to/extending_entry_model.html Unfortunately I am having trouble extending. First strange thing is that - I have to change the way the entry modules are…
2
votes
2 answers

Can't get zinnia to work in my django application

Upon accessing the test server/weblog/ url on localhost, in an environment with "latest everything stable" (python 2.7, django 1.4.1, apache 2.2.22) I'm getting: NoReverseMatch at /weblog/ Reverse for 'zinnia_entry_add' with arguments '()' and…
foxx1337
  • 1,859
  • 3
  • 19
  • 23
1
vote
1 answer

Django 3.2 makemigrations ProgrammingError: table doesn't exist for abstract model

I'm currently updating my website to use Django 3.2, but I use the zinnia blog which is no longer receiving updates. I'm making the necessary changes to bring it up to compatibility with 3.2 but I'm now getting the error that the AbstractEntry table…
somesmart
  • 11
  • 2
1
vote
1 answer

Issue with users model in zinnia and cookiecutter-django integration

First of all my setup: Linux Mint 18.2 Zinnia 0.20 Django 1.9.9 cookiecutter-django 1.9.9 Python 3.5.2 I have created a project from scratch with cookiecutter-django, using version 1.9.9, once that in zinnia docs it's recommended to use django <…
Flavio Barros
  • 996
  • 1
  • 11
  • 29
1
vote
1 answer

Search engine used by Django website and Zinnia?

What search engine app does the Django project uses itself in their website? The search form in https://docs.djangoproject.com/en/1.11/ Is that search engine good for blogs? Or the one used by Zinnia (what app is that?) is better?
cw12345
  • 383
  • 1
  • 2
  • 9
1
vote
0 answers

No reverse match for 'zinnia_entry_add' after rewriting entry’s URL

I am running Django 1.10.6, Django-cms 3.4.2, Django-blog-zinnia 0.18.1 and cmsplugin-zinnia==0.8.1 (downloaded from github fork, where django 1.10 compatibility is implemented) I'm stuck with this problem for too long and by brain is melting I've…
George
  • 988
  • 2
  • 10
  • 25
1
vote
1 answer

'zinnia_loop_template' received too many positional arguments

I am working on Django 1.8. I want to work with Django-blog-zinnia. I have installed zinnia, changed my setting.py file and have added links in urls.py of project. when I tried to access zinnia using weblog as per mentioned on Installation…
Mayday
  • 61
  • 1
  • 4
1
vote
1 answer

Explain the code snippet in Django

I am pretty new to Django. I am fiddling with zinnia to customize it and setting it up with my own theme/template etc. The main content displayed in the default template is following: {% for object in object_list %} {% include…
Maxsteel
  • 1,922
  • 4
  • 30
  • 55
1
vote
1 answer

Django and zinnia: NoReverseMatch for all views after upgrading

I had zinnia (0.14.1) working fine with my django (1.6.6) app. I then upgraded my django to 1.8.0 and my zinnia to 0.15.1 and made several of the required changes, including changing the name of the template tags from zinnia_tags to zinnia in my…
Dan Russell
  • 960
  • 8
  • 22
1
vote
0 answers

Django migrate with zinnia- InvalidBasesError: Cannot resolve bases for []

I am having some problems adding a zinnia blog app to an existing django application I have. It's been a couple of days with no results, so I'm open to any and all ideas. I am getting a similar error to this github issue on python 3.4.0 django…
import-antigravity
  • 151
  • 1
  • 6
  • 17
1
vote
1 answer

'zinnia_tags' is not a valid tag library

I am trying to override the zinnia templates in my django project. I have placed the file base.html at \templates\zinnia\ with the following contents: {% extends "base.html" %} {% load zinnia_tags i18n %} {% block sidebar %} Change. {% endblock…
Keval Doshi
  • 738
  • 6
  • 25
1
vote
1 answer

Django + Zinnia: Can not GET image for entry's illustration

I'm using Django (1.7.3) with zinnia blog (0.15.1) and I'm having an issue for rendering the 'image for illustration' that you can add for a blog entry. I have the following urls.py files: My top-dir url conf # -*- coding: utf-8 -*- from…
Matt
  • 162
  • 2
  • 11
1
vote
2 answers

Zinnia Templates for List and detail view

I am trying to integrate zinnia into a django application. I have to adept the zinnia templates into my theme. Now I am stuck, because it seems that zinnia is using the same template to build the blog entry list, and the blog entry detail page. This…
bknux
  • 536
  • 1
  • 5
  • 18
1
vote
1 answer

Migrations failing on Heroku

I have a Django-CMS project running on a Cedar stack using Django 1.7.1 and Python 3 at Heroku. I can create a migration just fine using: heroku run python manage.py makemigrations which returns: Migrations for 'zinnia': …
Brandon Taylor
  • 33,823
  • 15
  • 104
  • 144