Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-03-06 10:17:19 +0300
committerdartcafe <github@dartcafe.de>2021-03-06 10:17:19 +0300
commit5a5dd80dea464c1bf8ead9130cdfbcc58ba675d9 (patch)
tree2b6ef751c8bdffd86cff7d1ebb374d526b9fcb46 /src/js/views/Vote.vue
parent4d6ee0b53bf76fadadb5c1fa2ebc066f15895e07 (diff)
Add warning for anonymous polls
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/views/Vote.vue')
-rw-r--r--src/js/views/Vote.vue9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/js/views/Vote.vue b/src/js/views/Vote.vue
index e10f58f1..dcdf0e03 100644
--- a/src/js/views/Vote.vue
+++ b/src/js/views/Vote.vue
@@ -79,10 +79,13 @@
</EmptyContent>
</div>
- <!-- <div class="area__footer">
- <ParticipantsList />
+ <div v-if="poll.anonymous" class="area__footer">
+ <div>
+ {{ t('poll', 'Although participant\'s names are hidden, this is no real anonymous poll, bacause they are not hidden for the owner.') }}
+ {{ t('poll', 'Additionally the owner can remove the anonymous flag at any time, which will reveal the participant\'s names.') }}
+ </div>
</div>
- -->
+
<PublicRegisterModal v-if="showRegisterModal" />
<LoadingOverlay v-if="isLoading" />
</AppContent>