DEV Community

Ice or Fire
Ice or Fire

Posted on

What fun side projects are you working on?

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?

Top comments (1)

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.")