Add coordinates autocomplete widget & data (#32)
Just tweaks based on what Carl had already written in dce53630
and b97d421a
This commit is contained in:
parent
31a9ca316f
commit
677f6a85a9
@ -1,14 +1,30 @@
|
||||
from django.contrib import admin
|
||||
from django import forms
|
||||
from dal import autocomplete
|
||||
from leaflet.admin import LeafletGeoAdmin
|
||||
|
||||
from .models import CaseStudy, CaseStudyDraft
|
||||
from .models import CaseStudy, CaseStudyDraft, SpatialRefSys
|
||||
|
||||
|
||||
class CaseStudyDraftAdmin(admin.ModelAdmin):
|
||||
model = CaseStudyDraft
|
||||
|
||||
|
||||
class CaseStudyAdminForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = CaseStudy
|
||||
widgets = {
|
||||
'coordinate_reference_system': autocomplete.ModelSelect2(
|
||||
url='srs-autocomplete'
|
||||
)
|
||||
}
|
||||
fields = '__all__'
|
||||
|
||||
|
||||
class CaseStudyAdmin(LeafletGeoAdmin):
|
||||
list_display = ('id', 'date_created', 'entry_name', 'approved')
|
||||
actions = ['approve', 'unapprove']
|
||||
form = CaseStudyAdminForm
|
||||
|
||||
def approve(self, request, queryset):
|
||||
updated = queryset.update(approved=True)
|
||||
@ -33,5 +49,5 @@ class CaseStudyAdmin(LeafletGeoAdmin):
|
||||
unapprove.short_description = "Un-approve selected case studies"
|
||||
|
||||
admin.site.register(CaseStudy, CaseStudyAdmin)
|
||||
|
||||
admin.site.register(SpatialRefSys)
|
||||
admin.site.register(CaseStudyDraft, CaseStudyDraftAdmin)
|
||||
|
@ -2,12 +2,14 @@ from django.urls import reverse
|
||||
from django import forms
|
||||
from django.utils.translation import ugettext as _
|
||||
from django.utils.safestring import mark_safe
|
||||
|
||||
from crispy_forms.helper import FormHelper
|
||||
from crispy_forms.layout import Submit, Layout, HTML, Fieldset, Div
|
||||
from crispy_forms.bootstrap import Tab, TabHolder, PrependedText, FormActions
|
||||
from dal import autocomplete
|
||||
from leaflet.forms.widgets import LeafletWidget
|
||||
|
||||
from .models import CaseStudy
|
||||
from .models import CaseStudy, SpatialRefSys
|
||||
|
||||
|
||||
class MinimumZoomWidget(LeafletWidget):
|
||||
@ -80,6 +82,12 @@ class ShortCaseStudyForm(BaseCaseStudyForm):
|
||||
class LongCaseStudyForm(BaseCaseStudyForm):
|
||||
"""Long version of the CaseStudy form."""
|
||||
|
||||
coordinate_reference_system = forms.ModelChoiceField(
|
||||
queryset=SpatialRefSys.objects.all(),
|
||||
widget=autocomplete.ModelSelect2(url='srs-autocomplete'),
|
||||
initial=4326,
|
||||
)
|
||||
|
||||
POSITIVE_CASE_TYPE_HELP = {
|
||||
'CREP': _("We are using the World Wind Energy Association's Community Power definition, \
|
||||
which is that a community project is one where at least \
|
||||
|
45
apps/map/migrations/0054_auto_20180416_0355.py
Normal file
45
apps/map/migrations/0054_auto_20180416_0355.py
Normal file
@ -0,0 +1,45 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.6 on 2018-04-16 03:55
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.conf import settings
|
||||
import django.contrib.gis.db.models.fields
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('gis', '__first__'),
|
||||
('map', '0053_casestudydraft'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='SpatialRefSys',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'spatial reference system',
|
||||
'proxy': True,
|
||||
'indexes': [],
|
||||
},
|
||||
bases=('gis.postgisspatialrefsys',),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='casestudy',
|
||||
name='coordinate_reference_system',
|
||||
field=models.ForeignKey(blank=True, default=4326, null=True, on_delete=django.db.models.deletion.CASCADE, to='map.SpatialRefSys'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='casestudy',
|
||||
name='location',
|
||||
field=django.contrib.gis.db.models.fields.PointField(srid=4326, verbose_name='Project location'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='casestudydraft',
|
||||
name='author',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL),
|
||||
),
|
||||
]
|
@ -1,11 +1,14 @@
|
||||
import datetime
|
||||
from urllib import parse
|
||||
from django.contrib.gis.db import models
|
||||
|
||||
from django.contrib.auth.models import User
|
||||
from django.contrib.gis.db import models
|
||||
from django.db import connection
|
||||
from django.template.defaultfilters import slugify
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
from django_extensions.db.fields import AutoSlugField
|
||||
from django_countries.fields import CountryField
|
||||
from django.utils.translation import ugettext as _
|
||||
from django.template.defaultfilters import slugify
|
||||
from multiselectfield import MultiSelectField
|
||||
from phonenumber_field.modelfields import PhoneNumberField
|
||||
|
||||
@ -21,6 +24,18 @@ class CaseStudyDraft(models.Model):
|
||||
data = models.TextField()
|
||||
|
||||
|
||||
class SpatialRefSys(connection.ops.spatial_ref_sys()):
|
||||
def __str__(self):
|
||||
return self.__unicode__()
|
||||
|
||||
def __unicode__(self):
|
||||
return '{0.auth_name}:{0.auth_srid} {0.name}'.format(self)
|
||||
|
||||
class Meta:
|
||||
proxy = True
|
||||
verbose_name = "spatial reference system"
|
||||
|
||||
|
||||
class Shapefile(models.Model):
|
||||
file = models.FileField(
|
||||
upload_to='shapefiles/',
|
||||
@ -1021,13 +1036,11 @@ class CaseStudy(models.Model):
|
||||
)
|
||||
|
||||
# 4.3.2
|
||||
coordinate_reference_system = models.CharField(
|
||||
verbose_name=_("Coordinate reference system"),
|
||||
help_text=_("Enter the coordinate reference system of the shapefiles."),
|
||||
max_length=12,
|
||||
default=None,
|
||||
coordinate_reference_system = models.ForeignKey(
|
||||
SpatialRefSys,
|
||||
null=True,
|
||||
blank=True
|
||||
blank=True,
|
||||
default=4326
|
||||
)
|
||||
|
||||
# 4.3.3
|
||||
|
@ -1,9 +1,5 @@
|
||||
{% extends "base_page.html" %}
|
||||
{% load compress %}
|
||||
{% load crispy_forms_tags %}
|
||||
{% load i18n %}
|
||||
{% load leaflet_tags %}
|
||||
{% load static %}
|
||||
{% load compress crispy_forms_tags i18n leaflet_tags static %}
|
||||
|
||||
{% block stylesheets %}
|
||||
{{ block.super }}
|
||||
|
@ -8,12 +8,15 @@ from . import views
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^$', RedirectView.as_view(url=reverse_lazy('map')), name='index'),
|
||||
url(r'^data.geojson$', GeoJSONLayerView.as_view(model=CaseStudy, geometry_field='location'), name='data'),
|
||||
url(r'^case-study/create/?$', views.Create.as_view(), name="create"),
|
||||
url(r'^case-study/create/short/?$', views.ShortForm.as_view(), name='short-form'),
|
||||
url(r'^case-study/create/long/?$', views.LongForm.as_view(), name='long-form'),
|
||||
url(r'^case-study/create/success/?$', views.FormSuccess.as_view(), name='form-success'),
|
||||
url(r'^case-study/draft/?$', views.Drafts.as_view(), name='drafts'),
|
||||
url(r'^case-study/(?P<slug>[-\w]+)/?$', views.CaseStudyDetail.as_view(), name='detail'),
|
||||
url(r'^map/?$', views.Map.as_view(), name='map')
|
||||
url(r'^map/?$', views.Map.as_view(), name='map'),
|
||||
|
||||
# API
|
||||
url(r'^data.geojson$', GeoJSONLayerView.as_view(model=CaseStudy, geometry_field='location'), name='data'),
|
||||
url(r'^srs-autocomplete/$', views.SpatialRefSysAutocomplete.as_view(), name='srs-autocomplete'),
|
||||
]
|
||||
|
@ -1,13 +1,17 @@
|
||||
from django.core.mail import send_mail
|
||||
from django.conf import settings
|
||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||
from django.core.mail import send_mail
|
||||
from django.db.models import Q
|
||||
from django.http import Http404, HttpResponse
|
||||
from django.urls import reverse
|
||||
from django.views import View
|
||||
from django.views.generic import DetailView
|
||||
from django.views.generic.base import TemplateView
|
||||
from django.views.generic.edit import CreateView
|
||||
from django.http import Http404, HttpResponse
|
||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||
from django.urls import reverse
|
||||
from .models import CaseStudy, CaseStudyDraft
|
||||
|
||||
from dal import autocomplete
|
||||
|
||||
from .models import CaseStudy, CaseStudyDraft, SpatialRefSys
|
||||
from .forms import ShortCaseStudyForm, LongCaseStudyForm
|
||||
|
||||
|
||||
@ -83,6 +87,19 @@ class CaseStudyDetail(DetailView):
|
||||
context_object_name = "case_study"
|
||||
|
||||
|
||||
class SpatialRefSysAutocomplete(autocomplete.Select2QuerySetView):
|
||||
def get_queryset(self):
|
||||
qs = SpatialRefSys.objects.all()
|
||||
|
||||
if self.q:
|
||||
qs = qs.filter(
|
||||
Q(auth_name__icontains=self.q)
|
||||
| Q(auth_srid__icontains=self.q)
|
||||
)
|
||||
|
||||
return qs
|
||||
|
||||
|
||||
class Drafts(View):
|
||||
"""Retrieve or save a draft."""
|
||||
|
||||
|
@ -47,6 +47,8 @@ INSTALLED_APPS = [
|
||||
'cas_server',
|
||||
'compressor',
|
||||
'crispy_forms',
|
||||
'dal',
|
||||
'dal_select2',
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
|
@ -3,6 +3,7 @@ brotlipy==0.7.0
|
||||
boto==2.48.0
|
||||
boto3==1.4.7
|
||||
Django==1.11.6
|
||||
django-autocomplete-light==3.2.10
|
||||
django-appconf==1.0.2
|
||||
django-anymail==2.0
|
||||
django-avatar==4.0.1
|
||||
|
Loading…
Reference in New Issue
Block a user