mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
12 lines
233 B
Python
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')
|
|
|
|
|
|
|