andrewebdev / tehblog

A very simple django blogging app
BSD 3-Clause "New" or "Revised" License
2 stars 0 forks source link

Entries not published are returned to the category and tags view. #4

Closed andrewebdev closed 13 years ago

andrewebdev commented 14 years ago

We need to use the .public() manager function to return the public entries

andrewebdev commented 14 years ago

This includes any the tag_list inclusion tag, as well as tag urls.

andrewebdev commented 14 years ago

ok This is fixed in the template tags and the category_list view. Still need to fix this in the tag urls tho, since the django-tagging app does not accept a queryset as the input model.

Maybe write my own view instead of using django-tagging's generic view?