##// END OF EJS Templates
clean abs code
clean abs code

File last commit:

r13:6a2dde2f45c9
r315:b3c54f0853ae
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',)