29 lines
680 B
Plaintext
29 lines
680 B
Plaintext
<h3><%= t("admin.polls.show.officers_title") %></h3>
|
|
|
|
<% if @poll.officers.empty? %>
|
|
<div class="callout primary margin-top">
|
|
<%= t("admin.polls.show.no_officers") %>
|
|
</div>
|
|
<% else %>
|
|
<table>
|
|
<thead>
|
|
<th><%= t("admin.polls.show.name") %></th>
|
|
<th><%= t("admin.polls.show.email") %></th>
|
|
</thead>
|
|
<tbody>
|
|
<% @poll.officers.each do |officer| %>
|
|
<tr id="officer_<%= officer.id %>" class="officer">
|
|
<td>
|
|
<strong>
|
|
<%= officer.name %>
|
|
</strong>
|
|
</td>
|
|
<td>
|
|
<%= officer.email %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %>
|