×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
Index.html.rebの編集
PR
<h1>一覧表示</h1>
<h2>
<%= link_to '新規追加' ,new_task_path, class: 'btn btn-primary' %>
</h2>
<% if flash[:notice] %>
<p><%= flash[:notice] %></p>
<% end %>
<table class="table table-striped table-bordered table-hover">
<thead>
<tr class ="table-primary">
<th style="width: 20%">name
</th>
<th style="width: 60%">description
</th>
<th style="width: 20%">
</th>
</tr>
</thead>
<% @tasks.each do |task| %>
<tr>
<td>
<%=link_to task.name ,task_path(task.id) %>
</td>
<td>
<%= task.description %>
</td>
<td>
<%=link_to '[変更]', edit_task_path(task.id) , class: 'btn btn-warning btn-sm' %>|
<%=link_to '[削除]', task_path(task.id), class: 'btn btn-danger btn-sm',method: :delete,data:{confirm:'Sure?'} %>
</td>
</tr>
<% end %>
</table>