diff options
| author | Bobby <[email protected]> | 2023-06-16 21:06:20 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-06-16 21:06:20 -0400 |
| commit | 3f58ec2e918d6dcdc1213c58caec2d1691c81d3d (patch) | |
| tree | 3609454888405e60e65ac3755bbcd7da91da3593 /blog_admin/views.py | |
| parent | 66af49f7d066320a409bbc3a305d67dc96c4e281 (diff) | |
| download | thatcomputerscientist-3f58ec2e918d6dcdc1213c58caec2d1691c81d3d.tar.xz thatcomputerscientist-3f58ec2e918d6dcdc1213c58caec2d1691c81d3d.zip | |
Sending complete article in RSS
Diffstat (limited to 'blog_admin/views.py')
| -rw-r--r-- | blog_admin/views.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/blog_admin/views.py b/blog_admin/views.py index c552db05..e28f6429 100644 --- a/blog_admin/views.py +++ b/blog_admin/views.py @@ -2,10 +2,11 @@ import re from datetime import datetime from django.contrib import messages +from django.core.paginator import Paginator from django.http import HttpResponseRedirect from django.shortcuts import redirect, render, reverse -from django.core.paginator import Paginator -from blog.models import Category, Post, Tag, Comment + +from blog.models import Category, Comment, Post, Tag # Create your views here. |
