##// END OF EJS Templates
Fix RC plots bug
Fix RC plots bug

File last commit:

r13:6a2dde2f45c9
r332:9bb45c0e1ac7
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',)