2024-02-03 12:14:35 +01:00

12 lines
233 B
Python

from django.shortcuts import render
from django.http import HttpResponse
def index(response):
return HttpResponse("Welcome to siMed Migration")
def migration_home(request):
return render(request,'migration.html')