mirror of https://gitlab.federez.net/re2o/re2o
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.
11 lines
290 B
11 lines
290 B
from .models import Port
|
|
from django.forms import ModelForm, Form
|
|
|
|
class PortForm(ModelForm):
|
|
class Meta:
|
|
model = Port
|
|
fields = '__all__'
|
|
|
|
class EditPortForm(ModelForm):
|
|
class Meta(PortForm.Meta):
|
|
fields = ['room', 'machine_interface', 'related', 'details']
|
|
|