DEV Community

Discussion on: What fun side projects are you working on?

Collapse
 
ibrahim47886447 profile image
Ibrahim Abdulmalik

Please I need help with my django framework, I created a poll app and in the view.py the 'from django.shortcuts import render' is not working cos the httpresponse(request) is not working so I can't view the page on my server I've tried different methods but still its not working here is it looks like.

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

def index(request):
return HttpResponse("Hello, world. You're at the polls index.")