diff options
author | luxagraf <sng@luxagraf.net> | 2019-02-01 09:27:21 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-02-01 09:27:21 -0600 |
commit | 3a54cdb85027e4a59ca6d78f5b91dbf7be77afd0 (patch) | |
tree | 5fedfaa18d46d4da45ef9504b511eaa74bda4eae /app/sightings/forms.py | |
parent | 34f95ec85a7956515f810c9fda7d9650edc7da30 (diff) |
redid jrnl to speed things up and use less memory
Diffstat (limited to 'app/sightings/forms.py')
-rw-r--r-- | app/sightings/forms.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/app/sightings/forms.py b/app/sightings/forms.py deleted file mode 100644 index 77d61f9..0000000 --- a/app/sightings/forms.py +++ /dev/null @@ -1,12 +0,0 @@ -from dal import autocomplete - -from .models import Sighting - - -class SightingsForm(autocomplete.FutureModelForm): - class Meta: - model = Sighting - fields = ('pub_date','ap', 'point',) - widgets = { - 'ap': autocomplete.ModelSelect2(url='ap-autocomplete') - } |