##// END OF EJS Templates
Check the readme.md for the bokeh version notes and requeriments.
Check the readme.md for the bokeh version notes and requeriments.

File last commit:

r13:6a2dde2f45c9
r344:ada396c7b35b
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',)