##// END OF EJS Templates
Se solucionó el mensaje de advertencia HINT por DEFATUL_AUTO_FIELD
Se solucionó el mensaje de advertencia HINT por DEFATUL_AUTO_FIELD

File last commit:

r13:6a2dde2f45c9
r360:3d072a3b4687
Show More
forms.py
8 lines | 194 B | text/x-python | PythonLexer
from django import forms
from .models import USRPConfiguration
class USRPConfigurationForm(forms.ModelForm):
class Meta:
model = USRPConfiguration
fields = ('device',)