Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_Poll.cshtml

@model PollModel
@Model.Name @if (Model.AlreadyVoted) {
    @foreach (var item in Model.Answers) {
  • @string.Format(T("Polls.VotesResultLine").Text, item.Name, item.NumberOfVotes, item.PercentOfTotalVotes.ToString("0.0"))
  • }
@string.Format(T("Polls.TotalVotes").Text, Model.TotalVotes) } else {
    @foreach (var item in Model.Answers) {
  • }
}