Created
April 27, 2020 12:48
-
-
Save Adegitetaiwo/3f7f3a64d446c655852cd325ea556b4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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