mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
451 B
18 lines
451 B
# -*- coding: utf-8 -*-
|
|
#
|
|
from django import forms
|
|
|
|
from assets.models import SystemUser
|
|
from .models import CommandExecution
|
|
|
|
|
|
class CommandExecutionForm(forms.ModelForm):
|
|
class Meta:
|
|
model = CommandExecution
|
|
fields = ['run_as', 'command']
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
run_as_field = self.fields.get('run_as')
|
|
run_as_field.queryset = SystemUser.objects.all()
|