20 lines
491 B
Text
20 lines
491 B
Text
|
<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>
|