Compare commits
2 Commits
240b61f428
...
44b06d1c04
Author | SHA1 | Date | |
---|---|---|---|
44b06d1c04 | |||
0c2b1a4699 |
@ -11,7 +11,10 @@ class ExplorerCreationForm(UserCreationForm):
|
||||
class Meta:
|
||||
model = Explorer
|
||||
fields = ('username', 'email')
|
||||
voucher = forms.CharField(max_length=10, help_text='The Voucher you got from an administrator')
|
||||
voucher = forms.CharField(
|
||||
max_length=30,
|
||||
help_text='The Voucher you got from an administrator'
|
||||
)
|
||||
|
||||
def is_valid(self):
|
||||
super().is_valid()
|
||||
@ -49,10 +52,9 @@ class PlaceImageCreateForm(forms.ModelForm):
|
||||
|
||||
self.fields['filename'].required = False
|
||||
|
||||
|
||||
class TagSubmitForm(forms.Form):
|
||||
tag_list = forms.CharField(
|
||||
max_length=500,
|
||||
required=False,
|
||||
widget=forms.TextInput(attrs={'autocomplete':'off'})
|
||||
)
|
||||
)
|
||||
|
@ -26,7 +26,7 @@ urlpatterns = [
|
||||
path('place/', PlaceListView.as_view(), name='place_list'),
|
||||
path('flat/<slug:slug>/', FlatView, name='flatpage'),
|
||||
|
||||
# POST-only URL for tag submission
|
||||
# POST-only URLs for tag submission
|
||||
path('place/tag/<int:place_id>', PlaceTagSubmitView.as_view(), name='place_tag_submit'),
|
||||
path('place/tag/delete/<int:tagged_id>/<int:tag_id>', PlaceTagDeleteView.as_view(), name='place_tag_delete')
|
||||
]
|
||||
|
@ -95,4 +95,4 @@ class PlaceAssetDeleteView(IsAuthenticated, IsPlaceSubmitter, SingleObjectMixin,
|
||||
place_id = self.get_object().place.id
|
||||
self.get_object().delete()
|
||||
messages.success(self.request, self.success_message)
|
||||
return redirect(reverse_lazy('place_detail', kwargs={'pk': place_id}))
|
||||
return redirect(reverse_lazy('place_detail', kwargs={'pk': place_id}))
|
||||
|
Loading…
Reference in New Issue
Block a user