diff --git a/djangobb_forum/feeds.py b/djangobb_forum/feeds.py index 6e9e33e..2349743 100644 --- a/djangobb_forum/feeds.py +++ b/djangobb_forum/feeds.py @@ -19,12 +19,15 @@ class ForumFeed(Feed): def item_pubdate(self, obj): return obj.created + def item_author_name(self, item): + return item.user.username + class LastPosts(ForumFeed): title = _('Latest posts on forum') description = _('Latest posts on forum') title_template = 'djangobb_forum/feeds/posts_title.html' - description_template = 'djangobb_forumfeeds/posts_description.html' + description_template = 'djangobb_forum/feeds/posts_description.html' def get_object(self, request): user_groups = request.user.groups.all() diff --git a/extras/Makefile b/extras/Makefile index 965538b..13e6e6a 100644 --- a/extras/Makefile +++ b/extras/Makefile @@ -1,10 +1,10 @@ .PHONY: pep8 pyflakes clean pep8 : - pep8 --statistics --show-pep8 --filename=*.py --exclude='venv' ../djangobb + pep8 --statistics --show-pep8 --filename=*.py --exclude='venv' ../djangobb_forum pyflakes : - find ../djangobb -name '*.py' -not \( -path '*/venv/*' \) -exec pyflakes {} \; + find ../djangobb_forum -name '*.py' -not \( -path '*/venv/*' \) -exec pyflakes {} \; clean : - find ../djangobb -type f -name '*.pyc' -delete + find ../djangobb_forum -type f -name '*.pyc' -delete