Skip to content

Instantly share code, notes, and snippets.

@godfather68
Created June 6, 2020 09:30
Show Gist options
  • Save godfather68/127b3cb79661125c5c028699689b03cb to your computer and use it in GitHub Desktop.
Save godfather68/127b3cb79661125c5c028699689b03cb to your computer and use it in GitHub Desktop.
from django.shortcuts import render, get_object_or_404, redirect
from .models import Post
def all_post(request):
return render(request, 'index.html', {
'posts': Post.objects.all()[:3]
})
def post_detail(request, pk):
return render(request, 'detail.html', {
'post': get_object_or_404(Post, pk=id)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment