Commit c70a422
Changed files (1)
app
views
needs
app/views/needs/index.html.erb
@@ -26,12 +26,12 @@
<table class="table">
<tr>
<th>Description</th>
- <th>Person</th>
+ <th></th>
</tr>
<% @needs.each do |need| %>
<tr>
<td><%= need.description %></td>
- <td><%= need.user.email %></td>
+ <td><%= link_to "I can help...", need_path(need), :class => "btn" %></td>
</tr>
<% end %>
</table>