NameError at / имя 'HttpResponce' не определено [закрыто]

from django.http import HttpResponse
from django.shortcuts import render

# Create your views here.
#i'm trying to print hello world in django but i'm facing error's


def fun(request):
    return HttpResponce("hello world")
Вернуться на верх