23 lines
336 B
Python
23 lines
336 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 ")
|
|
|
|
def list_s(request):
|
|
# TO IMPLEMENT
|
|
pass
|
|
|
|
def form_(request):
|
|
# TO IMPLEMENT
|
|
pass
|
|
|
|
def add_(request):
|
|
# TO IMPLEMENT
|
|
pass
|