2016-06-24 02:32:51 +00:00
|
|
|
from django.conf import settings
|
2015-05-23 06:33:35 +00:00
|
|
|
from django.shortcuts import render
|
2016-04-03 09:46:25 +00:00
|
|
|
from django.utils.translation import get_language
|
|
|
|
from djangocms_blog.models import Post
|
2016-04-10 21:12:43 +00:00
|
|
|
from djangocms_blog.views import PostListView
|
2016-04-03 09:46:25 +00:00
|
|
|
from djangocms_blog.settings import get_setting
|
2015-05-23 06:33:35 +00:00
|
|
|
|
2016-04-03 09:46:25 +00:00
|
|
|
|
2016-04-10 21:12:43 +00:00
|
|
|
|
2016-04-03 09:46:25 +00:00
|
|
|
def blog(request):
|
|
|
|
posts = Post.objects.all()
|
|
|
|
context = {
|
|
|
|
'post_list': posts
|
|
|
|
}
|
|
|
|
|
|
|
|
# PostListView.base_template_name='post_list.html'
|
|
|
|
return render(request, 'ungleich/djangocms_blog/post_list_ungleich.html', context=context)
|
|
|
|
|
|
|
|
|
|
|
|
class PostListViewUngleich(PostListView):
|
|
|
|
model = Post
|
|
|
|
context_object_name = 'post_list'
|
|
|
|
base_template_name = 'post_list_ungleich.html'
|
|
|
|
paginate_by = 5
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(PostListView, self).get_context_data(**kwargs)
|
|
|
|
context['TRUNCWORDS_COUNT'] = get_setting('POSTS_LIST_TRUNCWORDS_COUNT')
|
2016-06-24 02:32:51 +00:00
|
|
|
context['languages'] = settings.LANGUAGES
|
|
|
|
context['current_language'] = get_language()
|
|
|
|
|
2016-04-03 09:46:25 +00:00
|
|
|
return context
|
|
|
|
|
|
|
|
def get_paginate_by(self, queryset):
|
|
|
|
return get_setting('PAGINATION')
|
|
|
|
|
|
|
|
def get_queryset(self):
|
|
|
|
language = get_language()
|
2016-05-16 12:34:45 +00:00
|
|
|
queryset = self.model.objects.filter(publish=True).translated(language)
|
2016-04-03 09:46:25 +00:00
|
|
|
setattr(self.request, get_setting('CURRENT_NAMESPACE'), self.config)
|
|
|
|
return queryset
|
|
|
|
|
|
|
|
|
|
|
|
def details(request, year, month, day, slug):
|
2016-04-09 06:51:20 +00:00
|
|
|
#should be this way
|
|
|
|
language = get_language()
|
|
|
|
#but currently the posts are not trasnlated
|
|
|
|
# language = 'en-us'
|
|
|
|
post = Post.objects.translated(language, slug=slug).first()
|
2016-04-03 09:46:25 +00:00
|
|
|
context = {'post': post}
|
|
|
|
return render(request, 'ungleich/djangocms_blog/post_detail.html', context=context)
|
2016-04-09 06:51:20 +00:00
|
|
|
|