I develop PHP for my day job but I'm trying to get better at Python/Django so I'm working on a side project for fun at https://www.iceorfire.com/ ... What sites are you making for fun or profit outside of your day job?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (1)
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.")