Answer the question
In order to leave comments, you need to log in
Why is the template not showing up?
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse(request, 'phylosophy/index.html', {})
Answer the question
In order to leave comments, you need to log in
1) Fix:
from django.shortcuts import render
def index(request):
return render(request, 'phylosophy/index.html', {})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question