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): |