Commit 2e4aa275 authored by Rurik Serzo's avatar Rurik Serzo

moved forum view function for urls.py to views.py

parent 5687dc1e
from django.http import HttpResponse
def index(request):
return HttpResponse("Welcome to Widget's Forum!")
\ No newline at end of file
from django.shortcuts import render from django.shortcuts import render
from django.http import HttpResponse
# Create your views here. def index(request):
return HttpResponse("Welcome to Widget's Forum!")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment