Skip to content

Instantly share code, notes, and snippets.

@Adegitetaiwo
Created April 27, 2020 12:48
Show Gist options
  • Select an option

  • Save Adegitetaiwo/3f7f3a64d446c655852cd325ea556b4a to your computer and use it in GitHub Desktop.

Select an option

Save Adegitetaiwo/3f7f3a64d446c655852cd325ea556b4a to your computer and use it in GitHub Desktop.
from django.shortcuts import render, redirect, get_object_or_404
from .models import blog
from account.views import User
from .forms import CommentForm
from django.contrib import messages as msg
from django import forms
# Create your views here.
def blogs(request):
blogs = blog.objects.order_by('-id')
content = {
'posts' : blogs
}
return render(request, 'blog.html', content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment