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
0
votes
1 answer

How to integrate a django project with the zinnia app after installing it?

I downloaded Zinnia from https://www.djangopackages.com/python3/. and successfully installed it in my WIN8 OS.C:\Python33\Lib\site-packages\django_blog_zinnia-0.14.dev-py3.3.egg\zinnia. I have a django project -- 'C:\Users\Nan\iwebs'. and now I want…
tcpiper
  • 2,456
  • 2
  • 28
  • 41
0
votes
1 answer

How do I setup a RSS subscribe page in Django Zinnia?

I set up my blog using Django Zinnia. Zinnia includes a RSS feed module by default. I can access the feeds page by the URL mywebsite.com/blog/feeds. Right now the page is just the XML for a RSS feed. I am looking to make a page more like this:…
Di Zou
  • 4,469
  • 13
  • 59
  • 88
0
votes
1 answer

Display entries in chronological order in zinnia-blog

How can I display the entries of a zinnia blog in chronological order, i.e. from oldest to newest? I tried changing and tweaking the class based view or the manager, but nothing seems to work, I always get the usual "newest-to-oldest"…
jammon
  • 3,404
  • 3
  • 20
  • 29
0
votes
1 answer

Zinnia Blog Entry showing up 404 Page Not Found

I have Django 1.5.1 installed and django-cms 2.4.2 However I have not integrated zinnia blog and django-cms just yet. I was able to create a blog entry but when going to the blog entry 8000/en/weblog/2013/10/13/test-entry/ I receive a 404 Page not…
tareq
  • 1,329
  • 2
  • 11
  • 16
0
votes
1 answer

Django Failure After Installing Zinnia

Was on a Linux machine, working on a Django website. Recently got a new computer and am running windows 8 on it. I am using PyCharm, and am trying to start the local server up for the first time. The last dependency I installed was zinnia, and now…
Stealthy Stan
  • 383
  • 1
  • 3
  • 11
0
votes
2 answers

Django Zinnia not displaying Facebook HTML Like correctly

I have Django Zinnia installed. In the Edit Entry Admin Page, when I paste the Facebook HTML Like Button code into my Entry, it doesn't show up. I am getting the source code from here: https://developers.facebook.com/docs/reference/plugins/like/ I…
Di Zou
  • 4,469
  • 13
  • 59
  • 88
0
votes
1 answer

Django-blog-zinnia not displaying admin CSS/Javascript properly

I am having the following problem with Django-blog-zinnia, please see the picture below. My static files are being served on Amazon S3, this includes the CSS and Javascript in the screen shot below. I can properly trace all of the static files to a…
Joker
  • 2,119
  • 4
  • 27
  • 38
0
votes
1 answer

How to get with statement working with zinnia tag

I got a problem with iteration on zinnia tag outcome. Let's say that that tag returns a list of some categories, I tried to manage it in few ways: {% with categories=get_plain_categories %} {% for category in categories %}

{{…

mdargacz
  • 1,267
  • 18
  • 32
0
votes
0 answers

Zinnia Blog doesn't use custom auth user model

I am using Zinnia Blog module with my Django app. I have a Django app and have a custom User model. I have added the following setting: AUTH_USER_MODEL = 'account.Member' However, when I try to create a new entry in the blog I get the Foreign Key…
tank
  • 319
  • 6
  • 15
0
votes
0 answers

django-zinnia-blog: decorators to mixins

with django-blog-zinnia I have this older code from zinnia.views.decorators import update_queryset def qset(): return BlogEntry.objects.filter(status=2).filter(creation_date__gte=cutoff) view_blogs = update_queryset(object_list, qset) The…
Klanestro
  • 3,185
  • 5
  • 25
  • 31
0
votes
1 answer

Simple Compass CSS Error

I am learning Compass with Django/Zinnia. Running the following to produce css produces an error that I don't really understand. Thanks! cd /var/www/static/zinnia compass compile ./ --trace LoadError on line ["36"] of…
mh00h
  • 1,824
  • 3
  • 25
  • 45
0
votes
1 answer

Django internationalization not working while DEBUG = True in zinnia blog app

one of those things that need some grasp of django internals which I still lack. I'm testing a blogging app zinnia (http://django-blog-zinnia.com/). With DEBUG = False I get my website without static assets (locally, this I can understand), with…
Pawel Ceranka
  • 441
  • 1
  • 4
  • 7
0
votes
1 answer

Extending zinnia

I am trying to edit the template for Zinnia but I don't know where pip install zinnia. I used this installation instruction from the website. I tried find and locate but couldn't find it. $ pip install django-blog-zinnia Any ideas?
0
votes
1 answer

Installing django-blog-zinnia

I am going through the docs of http://django-blog-zinnia.com/documentation/getting-started/install/ and when I syncdb I get this error, tagging is in my installed apps, can someone help me? Traceback (most recent call last): File "manage.py", line…
Klanestro
  • 3,185
  • 5
  • 25
  • 31
0
votes
1 answer

Create a entry object in zinnia for the view function -basic python

Can some one help explain the following page to me http://nullege.com/codes/search/zinnia.models.Entry.objects.create How do I create a entry in zinnia with a form.html file and a view function in django I know it's basic python playing around with…
Klanestro
  • 3,185
  • 5
  • 25
  • 31
1 2 3 4
5