Removing Expireable from PlaceVote

This commit is contained in:
Leonhard Strohmidel 2022-09-20 11:59:51 +02:00
parent 86c9de3213
commit a2ee323fa4
1 changed files with 2 additions and 3 deletions

View File

@ -221,12 +221,11 @@ class PlaceVoteView(IsEligibleToSeePlaceMixin, View):
voting = PlaceVoting.objects.create(
submitted_by=explorer,
place=place,
vote=vote,
expires_when=timezone.now()+self.delta
vote=vote
)
messages.success(self.request, _('Vote submitted'))
else:
voting.expires_when=timezone.now()+self.delta
voting.submitted_when = timezone.now()
voting.vote = vote
messages.success(self.request, _('Your vote has been update'))