adds view placeholders for officing polls

This commit is contained in:
rgarcia
2016-09-16 13:06:30 +02:00
committed by kikito
parent 08fbe745a8
commit 503338e47b
34 changed files with 188 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
<div class="admin-sidebar">
<ul id="admin_menu">
<li <%= "class=active" if controller_name == "voters" %>>
<%= link_to new_officing_poll_voter_path(Poll.last) do %>
<span class="icon-user"></span>
<%= t("officing.menu.voters") %>
<% end %>
</li>
<li <%= "class=active" if controller_name == "results" %>>
<%= link_to new_officing_poll_result_path(Poll.last) do %>
<span class="icon-user"></span>
<%= t("officing.menu.results") %>
<% end %>
</li>
</div>