Source code for geonode.geoserver.createlayer.forms

#########################################################################
#
# Copyright (C) 2017 OSGeo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#########################################################################

from django import forms
from django.utils.translation import ugettext_lazy as _

[docs] GEOMETRY_TYPES = ( ("Point", _("Points")), ("LineString", _("Lines")), ("Polygon", _("Polygons")), )
[docs] class NewDatasetForm(forms.Form): """ A form to create an empty layer in PostGIS. """
[docs] name = forms.CharField(label=_("Dataset name"), max_length=255)
[docs] title = forms.CharField(label=_("Dataset title"), max_length=255)
[docs] geometry_type = forms.ChoiceField(label=_("Geometry type"), choices=GEOMETRY_TYPES)
[docs] permissions = forms.CharField( widget=forms.HiddenInput(attrs={"name": "permissions", "id": "permissions"}), required=False )
[docs] attributes = forms.CharField( widget=forms.HiddenInput(attrs={"name": "attributes", "id": "attributes"}), required=False, empty_value="{}" )