matenia/ad_man

View on GitHub
app/views/ad_man/keywords/index.html.erb

Summary

Maintainability
Test Coverage
<h1>Current Keywords</h1>
<div id="keywords">
<table>
    <% @keywords.each do |keyword| %>
  <tr>
    <td><%= link_to keyword.name, keyword %></td>
  </tr>    
<% end %>
</table>
<div id="keywords">
    <%= button_to 'New Keyword', new_keyword_path, :method => :get %>
</div>
</div >