reformat voting portal

This commit is contained in:
Kiara Grouwstra 2023-02-18 23:25:03 +01:00
parent aac08208cc
commit b3b3b83451
Signed by: kiara
GPG Key ID: 47D3B7604FFCA83A
1 changed files with 4 additions and 4 deletions

View File

@ -2,13 +2,13 @@
<h1>Stemmingen: <%= @user.name %></h1>
(als dit niet vanzelf invult: user id <%= @user.id %>)
<ul>
<% @votes.each do |vote| %>
<li>
<a href="https://stemmen.bij1.org/helios/e/<%= vote.election_slug %>/vote#id_voter_id=<%= vote.user_id %>&id_password=<%= vote.voter_password %>">
<%= vote.election_slug %>
</a>
(als dit niet vanzelf invult: user id <%= vote.user_id %>, wachwoord <%= vote.voter_password %>)
<a href="https://stemmen.bij1.org/helios/e/<%= vote.election_slug %>/vote#id_voter_id=<%= vote.user_id %>&id_password=<%= vote.voter_password %>"><%= vote.election_slug %></a>
(wachtwoord: <%= vote.voter_password %>)
</li>
<% end %>
</ul>