kaiho/app/views/softwares/index.html.erb

20 lines
491 B
Text
Raw Normal View History

2018-07-22 15:44:29 +00:00
<h3>Softwares</h3>
<p class="uk-align-right">
<span uk-icon="icon: plus-circle"></span>
<%= link_to 'Add software', new_software_path(@software), class: 'uk-icon-link' %>
</p>
<table class="uk-table uk-table-striped">
<thead>
<tr>
<th>Name</th>
<th>Website</th>
</tr>
</thead>
<% @softwares.each do |software| %>
<tr>
<td><%= link_to software.name, software %></td>
<td><%= link_to software.website, software.website %></td>
</tr>
<% end %>
</table>