23 lines
372 B
Python
23 lines
372 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
from pprint import pprint
|
|
|
|
from ..models import *
|
|
from ..forms import *
|
|
|
|
def index(request):
|
|
return HttpResponse("Hello Insurance")
|
|
|
|
def list_insurances(request):
|
|
# TO IMPLEMENT
|
|
pass
|
|
|
|
def form_insurance(request):
|
|
# TO IMPLEMENT
|
|
pass
|
|
|
|
def add_insurance(request):
|
|
# TO IMPLEMENT
|
|
pass
|