8 lines
143 B
Python
Executable File
8 lines
143 B
Python
Executable File
from django.forms import ModelForm
|
|
from models import BestPractice
|
|
|
|
class BestPracticeForm(ModelForm):
|
|
class Meta:
|
|
model = BestPractice
|
|
|