Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-25 08:29:10

0001 from django import forms
0002 from .models import SystemAgent
0003 
0004 class SystemAgentForm(forms.ModelForm):
0005     class Meta:
0006         model = SystemAgent
0007         fields = ['instance_name', 'agent_type', 'description', 'status', 'agent_url']