Skip to content

Commit

Permalink
Layer: organization field can be blank #181
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Oct 2, 2014
1 parent 32acd77 commit 11fc798
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nodeshot/core/layers/models/layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class Layer(BaseDate):
area = models.PolygonField(_('area'), null=True, blank=True)

# organizational
organization = models.CharField(_('organization'), help_text=_('Organization which is responsible to manage this layer'), max_length=255)
organization = models.CharField(_('organization'), max_length=255, blank=True,
help_text=_('Organization which is responsible to manage this layer'))
website = models.URLField(_('Website'), blank=True, null=True)
email = models.EmailField(_('email'),
help_text=_("""possibly an email address that delivers messages to all the active participants;
Expand Down

0 comments on commit 11fc798

Please sign in to comment.