file version update view

This commit is contained in:
fjrodriguez
2023-02-10 11:07:59 -06:00
parent ddc4be05a2
commit 3aaa0cd909
3 changed files with 63 additions and 5 deletions

6
Sistemas/forms.py Normal file
View File

@@ -0,0 +1,6 @@
from django import forms
from .models import Sistema
class SistemaForm(forms.ModelForm):
class Meta:
model = Sistema
fields = ['nombre_sistema','version']