mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
from django import forms
|
|
from django.utils.translation import gettext as _
|
|
|
|
from utilities.forms import BootstrapMixin, DateTimePicker
|
|
|
|
__all__ = (
|
|
'ScriptForm',
|
|
)
|
|
|
|
|
|
class ScriptForm(BootstrapMixin, forms.Form):
|
|
_commit = forms.BooleanField(
|
|
required=False,
|
|
initial=True,
|
|
label=_("Commit changes"),
|
|
help_text=_("Commit changes to the database (uncheck for a dry-run)")
|
|
)
|
|
_schedule_at = forms.DateTimeField(
|
|
required=False,
|
|
widget=DateTimePicker(),
|
|
label=_("Schedule at"),
|
|
help_text=_("Schedule execution of script to a set time"),
|
|
)
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
# Move _commit and _schedule_at to the end of the form
|
|
schedule_at = self.fields.pop('_schedule_at')
|
|
commit = self.fields.pop('_commit')
|
|
self.fields['_schedule_at'] = schedule_at
|
|
self.fields['_commit'] = commit
|
|
|
|
@property
|
|
def requires_input(self):
|
|
"""
|
|
A boolean indicating whether the form requires user input (ignore the _commit and _schedule_at fields).
|
|
"""
|
|
return bool(len(self.fields) > 2)
|