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')