Created a separate handler for the main page

It displays the last five blog entries
This commit is contained in:
2013-10-01 22:55:35 +02:00
parent 4cb97ed97a
commit e04a7c6fda
2 changed files with 6 additions and 2 deletions

View File

@@ -2,10 +2,14 @@ import datetime
from django.shortcuts import render, get_object_or_404
from blog.models import Post
def index(request):
def mainpage(request):
last_posts = Post.objects.order_by('-created_at')[:5]
return render(request, 'blog/listing.html', {'posts': last_posts})
def index(request):
last_posts = Post.objects.order_by('-created_at')
return render(request, 'blog/listing.html', {'posts': last_posts})
def read(request, year, month, day, slug):
post = get_object_or_404(Post, created_at__year=int(year), created_at__month=int(month), created_at__day=int(day), slug=slug);
return render(request, 'blog/view.html', {'post': post})