17 lines
297 B
Text
17 lines
297 B
Text
<h1>Home</h1>
|
|
|
|
<p>Hello, <%= current_user.email %>.</p>
|
|
|
|
<h2>Votes</h2>
|
|
|
|
<ul>
|
|
<% @votes.each do |vote| %>
|
|
<li>
|
|
<a href="/votes/<%= vote.secure_id %>"><%= vote.title %></a>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<form action="/votes/new" method="get">
|
|
<button type="submit">Create new vote</button>
|
|
</form>
|