12 lines
181 B
Python
12 lines
181 B
Python
from django.shortcuts import render
|
|
from django.views import View
|
|
|
|
# Create your views here.
|
|
class Login(View):
|
|
pass
|
|
|
|
class Create(View):
|
|
pass
|
|
|
|
class Delete(View):
|
|
pass |