This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit e930cbc625fa3b1447ad34f2539346a3f5c0384c Author: Kevin Morin <morin@codelutin.com> Date: Tue May 9 11:25:26 2017 +0200 affichage du libellé "anonyme" en cas de vote anonyme --- pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html index 983024c..ef2074d 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html @@ -104,7 +104,8 @@ require("./Podium.tag.html"); <span class="voter-name" if="{vote.id !== voteId}"> <i class="fa fa-user"/> - {vote.voterName} + <span if="{!vote.anonymous}">{vote.voterName}</span> + <span if="{vote.anonymous}" class="anonymous-voter">{parent.__.anonymousVoter}</span> </span> <div class="o-field o-field--icon-left" if={vote.id === voteId}> @@ -497,5 +498,10 @@ require("./Podium.tag.html"); padding: 0 0 0 1px; } + .anonymous-voter { + color: #666; + font-style: italic; + } + </style> </Votes> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.