mv templates/forum templates/djangobb_forum
--HG-- rename : djangobb_forum/templates/forum/add_post.html => djangobb_forum/templates/djangobb_forum/add_post.html rename : djangobb_forum/templates/forum/base.html => djangobb_forum/templates/djangobb_forum/base.html rename : djangobb_forum/templates/forum/delete_posts.html => djangobb_forum/templates/djangobb_forum/delete_posts.html rename : djangobb_forum/templates/forum/edit_post.html => djangobb_forum/templates/djangobb_forum/edit_post.html rename : djangobb_forum/templates/forum/feeds/posts_description.html => djangobb_forum/templates/djangobb_forum/feeds/posts_description.html rename : djangobb_forum/templates/forum/feeds/posts_title.html => djangobb_forum/templates/djangobb_forum/feeds/posts_title.html rename : djangobb_forum/templates/forum/feeds/topics_description.html => djangobb_forum/templates/djangobb_forum/feeds/topics_description.html rename : djangobb_forum/templates/forum/feeds/topics_title.html => djangobb_forum/templates/djangobb_forum/feeds/topics_title.html rename : djangobb_forum/templates/forum/forum.html => djangobb_forum/templates/djangobb_forum/forum.html rename : djangobb_forum/templates/forum/forum_row.html => djangobb_forum/templates/djangobb_forum/forum_row.html rename : djangobb_forum/templates/forum/header.html => djangobb_forum/templates/djangobb_forum/header.html rename : djangobb_forum/templates/forum/index.html => djangobb_forum/templates/djangobb_forum/index.html rename : djangobb_forum/templates/forum/lofi/base.html => djangobb_forum/templates/djangobb_forum/lofi/base.html rename : djangobb_forum/templates/forum/lofi/footer.html => djangobb_forum/templates/djangobb_forum/lofi/footer.html rename : djangobb_forum/templates/forum/lofi/forum.html => djangobb_forum/templates/djangobb_forum/lofi/forum.html rename : djangobb_forum/templates/forum/lofi/header.html => djangobb_forum/templates/djangobb_forum/lofi/header.html rename : djangobb_forum/templates/forum/lofi/index.html => djangobb_forum/templates/djangobb_forum/lofi/index.html rename : djangobb_forum/templates/forum/lofi/pagination.html => djangobb_forum/templates/djangobb_forum/lofi/pagination.html rename : djangobb_forum/templates/forum/lofi/topic.html => djangobb_forum/templates/djangobb_forum/lofi/topic.html rename : djangobb_forum/templates/forum/mail_to.html => djangobb_forum/templates/djangobb_forum/mail_to.html rename : djangobb_forum/templates/forum/moderate.html => djangobb_forum/templates/djangobb_forum/moderate.html rename : djangobb_forum/templates/forum/moderators.html => djangobb_forum/templates/djangobb_forum/moderators.html rename : djangobb_forum/templates/forum/move_topic.html => djangobb_forum/templates/djangobb_forum/move_topic.html rename : djangobb_forum/templates/forum/pagination.html => djangobb_forum/templates/djangobb_forum/pagination.html rename : djangobb_forum/templates/forum/post_preview.html => djangobb_forum/templates/djangobb_forum/post_preview.html rename : djangobb_forum/templates/forum/profile/profile_admin.html => djangobb_forum/templates/djangobb_forum/profile/profile_admin.html rename : djangobb_forum/templates/forum/profile/profile_display.html => djangobb_forum/templates/djangobb_forum/profile/profile_display.html rename : djangobb_forum/templates/forum/profile/profile_essentials.html => djangobb_forum/templates/djangobb_forum/profile/profile_essentials.html rename : djangobb_forum/templates/forum/profile/profile_menu.html => djangobb_forum/templates/djangobb_forum/profile/profile_menu.html rename : djangobb_forum/templates/forum/profile/profile_messaging.html => djangobb_forum/templates/djangobb_forum/profile/profile_messaging.html rename : djangobb_forum/templates/forum/profile/profile_personal.html => djangobb_forum/templates/djangobb_forum/profile/profile_personal.html rename : djangobb_forum/templates/forum/profile/profile_personality.html => djangobb_forum/templates/djangobb_forum/profile/profile_personality.html rename : djangobb_forum/templates/forum/profile/profile_privacy.html => djangobb_forum/templates/djangobb_forum/profile/profile_privacy.html rename : djangobb_forum/templates/forum/report.html => djangobb_forum/templates/djangobb_forum/report.html rename : djangobb_forum/templates/forum/reputation.html => djangobb_forum/templates/djangobb_forum/reputation.html rename : djangobb_forum/templates/forum/reputation_form.html => djangobb_forum/templates/djangobb_forum/reputation_form.html rename : djangobb_forum/templates/forum/search_form.html => djangobb_forum/templates/djangobb_forum/search_form.html rename : djangobb_forum/templates/forum/search_posts.html => djangobb_forum/templates/djangobb_forum/search_posts.html rename : djangobb_forum/templates/forum/search_topics.html => djangobb_forum/templates/djangobb_forum/search_topics.html rename : djangobb_forum/templates/forum/topic.html => djangobb_forum/templates/djangobb_forum/topic.html rename : djangobb_forum/templates/forum/upload_avatar.html => djangobb_forum/templates/djangobb_forum/upload_avatar.html rename : djangobb_forum/templates/forum/user.html => djangobb_forum/templates/djangobb_forum/user.html rename : djangobb_forum/templates/forum/users.html => djangobb_forum/templates/djangobb_forum/users.html
This commit is contained in:
parent
2049da4f09
commit
fbc0ea2ed5
46 changed files with 44 additions and 44 deletions
|
@ -23,8 +23,8 @@ class ForumFeed(Feed):
|
|||
class LastPosts(ForumFeed):
|
||||
title = _('Latest posts on forum')
|
||||
description = _('Latest posts on forum')
|
||||
title_template = 'forum/feeds/posts_title.html'
|
||||
description_template = 'forum/feeds/posts_description.html'
|
||||
title_template = 'djangobb_forumfeeds/posts_title.html'
|
||||
description_template = 'djangobb_forumfeeds/posts_description.html'
|
||||
|
||||
def get_object(self, request):
|
||||
user_groups = request.user.groups.all()
|
||||
|
@ -42,8 +42,8 @@ class LastPosts(ForumFeed):
|
|||
class LastTopics(ForumFeed):
|
||||
title = _('Latest topics on forum')
|
||||
description = _('Latest topics on forum')
|
||||
title_template = 'forum/feeds/topics_title.html'
|
||||
description_template = 'forum/feeds/topics_description.html'
|
||||
title_template = 'djangobb_forumfeeds/topics_title.html'
|
||||
description_template = 'djangobb_forumfeeds/topics_description.html'
|
||||
|
||||
def get_object(self, request):
|
||||
user_groups = request.user.groups.all()
|
||||
|
@ -59,8 +59,8 @@ class LastTopics(ForumFeed):
|
|||
|
||||
|
||||
class LastPostsOnTopic(ForumFeed):
|
||||
title_template = 'forum/feeds/posts_title.html'
|
||||
description_template = 'forum/feeds/posts_description.html'
|
||||
title_template = 'djangobb_forumfeeds/posts_title.html'
|
||||
description_template = 'djangobb_forumfeeds/posts_description.html'
|
||||
|
||||
def get_object(self, request, topic_id):
|
||||
topic = Topic.objects.get(id=topic_id)
|
||||
|
@ -84,8 +84,8 @@ class LastPostsOnTopic(ForumFeed):
|
|||
|
||||
|
||||
class LastPostsOnForum(ForumFeed):
|
||||
title_template = 'forum/feeds/posts_title.html'
|
||||
description_template = 'forum/feeds/posts_description.html'
|
||||
title_template = 'djangobb_forumfeeds/posts_title.html'
|
||||
description_template = 'djangobb_forumfeeds/posts_description.html'
|
||||
|
||||
def get_object(self, request, forum_id):
|
||||
forum = Forum.objects.get(id=forum_id)
|
||||
|
@ -109,8 +109,8 @@ class LastPostsOnForum(ForumFeed):
|
|||
|
||||
|
||||
class LastPostsOnCategory(ForumFeed):
|
||||
title_template = 'forum/feeds/posts_title.html'
|
||||
description_template = 'forum/feeds/posts_description.html'
|
||||
title_template = 'djangobb_forumfeeds/posts_title.html'
|
||||
description_template = 'djangobb_forumfeeds/posts_description.html'
|
||||
|
||||
def get_object(self, request, category_id):
|
||||
category = Category.objects.get(id=category_id)
|
||||
|
|
Reference in a new issue