mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
8 lines
168 B
Python
8 lines
168 B
Python
from django import forms
|
|
from scanEngine.models import EngineType
|
|
|
|
class AddEngineForm(forms.ModelForm):
|
|
class Meta:
|
|
model = EngineType
|
|
fields = []
|