Pratyush Desai
1c097640a7
Attempt to figure out the necessary data models and applicable fields. Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
6 lines
164 B
Python
6 lines
164 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
|
|
def index(request):
|
|
return HttpResponse("Hello, world. You're at the GibCasa index.") |