diff --git a/umap/forms.py b/umap/forms.py index 636013eb..e6893690 100644 --- a/umap/forms.py +++ b/umap/forms.py @@ -53,8 +53,8 @@ class DataLayerPermissionsForm(forms.ModelForm): class AnonymousDataLayerPermissionsForm(forms.ModelForm): STATUS = ( - (Map.ANONYMOUS, _("Everyone can edit")), (Map.OWNER, _("Only editable with secret edit link")), + (Map.ANONYMOUS, _("Everyone can edit")), ) edit_status = forms.ChoiceField(choices=STATUS)