23 lines
360 B
Python
23 lines
360 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 Person")
|
|
|
|
def list_persons(request):
|
|
# TO IMPLEMENT
|
|
pass
|
|
|
|
def form_person(request):
|
|
# TO IMPLEMENT
|
|
pass
|
|
|
|
def add_person(request):
|
|
# TO IMPLEMENT
|
|
pass
|