18 lines
297 B
Python
18 lines
297 B
Python
from django.db.models import Q
|
|
|
|
from core.forms.common import CommonModelForm
|
|
|
|
from itam.models.operating_system import OperatingSystemVersion
|
|
|
|
|
|
|
|
class OperatingSystemVersionForm(CommonModelForm):
|
|
|
|
class Meta:
|
|
|
|
fields = [
|
|
'name',
|
|
]
|
|
|
|
model = OperatingSystemVersion
|