Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions pombola/south_africa/templates/info/_blog_sidebar_story.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<!-- SMALL STORY -->
{% load content_props %}
{% load random_numbers %}
<div class="small-story">
<div class="row">
<div class="col-3">
Expand Down
4 changes: 1 addition & 3 deletions pombola/south_africa/views/infoviews.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from django.views.generic import DetailView, ListView
from django.views.generic.base import ContextMixin

from pombola.core.views import CommentArchiveMixin

from info.models import InfoPage, Category, Tag, ViewCount

from django.conf import settings
Expand Down Expand Up @@ -98,5 +96,5 @@ class SAInfoBlogList(BlogMixin,ListView):
paginate_by = settings.INFO_POSTS_PER_LIST_PAGE
template_name = 'info/blog_list.html'

class SAInfoBlogView(CommentArchiveMixin, InfoBlogView):
class SAInfoBlogView(BlogMixin, InfoBlogView):
pass