##// END OF EJS Templates
Scheduler funcional
Scheduler funcional

File last commit:

r13:6a2dde2f45c9
r395:cfb0f9955b15
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',)