mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
880503971b
Modification d'un port
11 lines
290 B
Python
11 lines
290 B
Python
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']
|