This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-10-07 14:33:48 +00:00
|
|
|
"""General fields"""
|
2020-05-16 17:55:59 +00:00
|
|
|
from django import forms
|
|
|
|
|
|
|
|
from passbook.policies.models import PolicyBinding, PolicyBindingModel
|
2019-10-07 14:33:48 +00:00
|
|
|
|
2020-05-28 19:45:54 +00:00
|
|
|
GENERAL_FIELDS = ["name"]
|
|
|
|
GENERAL_SERIALIZER_FIELDS = ["pk", "name"]
|
2020-05-16 17:55:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PolicyBindingForm(forms.ModelForm):
|
|
|
|
"""Form to edit Policy to PolicyBindingModel Binding"""
|
|
|
|
|
|
|
|
target = forms.ModelChoiceField(
|
2020-05-20 07:17:06 +00:00
|
|
|
queryset=PolicyBindingModel.objects.all().select_subclasses(),
|
|
|
|
to_field_name="pbm_uuid",
|
2020-05-16 17:55:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = PolicyBinding
|
2020-05-28 19:45:54 +00:00
|
|
|
fields = ["enabled", "policy", "target", "order", "timeout"]
|