##// END OF EJS Templates
Views: Display "Page not found (404)" in case there is no object with the given pk....
Views: Display "Page not found (404)" in case there is no object with the given pk. git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@34 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r13:6a2dde2f45c9
r20:391e0c460449
Show More
forms.py
8 lines | 194 B | text/x-python | PythonLexer
Miguel Urco
Campaign has been added to RadarSys Model...
r13 from django import forms
from .models import USRPConfiguration
class USRPConfigurationForm(forms.ModelForm):
class Meta:
model = USRPConfiguration
fields = ('device',)