23 lines
371 B
Python
23 lines
371 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 #NAME_UPPERFIRST#")
|
|
|
|
def list_#NAME#s(request):
|
|
# TO IMPLEMENT
|
|
pass
|
|
|
|
def form_#NAME#(request):
|
|
# TO IMPLEMENT
|
|
pass
|
|
|
|
def add_#NAME#(request):
|
|
# TO IMPLEMENT
|
|
pass
|