24 lines
543 B
Python
24 lines
543 B
Python
from django.db.models import Q
|
|
|
|
from core.forms.common import CommonModelForm
|
|
|
|
from itam.models.device import DeviceSoftware
|
|
from itam.models.software import Software, SoftwareVersion
|
|
|
|
|
|
class SoftwareUpdate(CommonModelForm):
|
|
|
|
class Meta:
|
|
model = DeviceSoftware
|
|
fields = [
|
|
'action',
|
|
'version',
|
|
]
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.fields['version'].queryset = SoftwareVersion.objects.filter(software_id=self.instance.software.id)
|
|
|