0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Rails】投稿一覧(テーブルタグ)

Last updated at Posted at 2023-03-22

投稿した一覧表示方法

テーブルタグを使って下のように作っていきたいと思います~!!

image.png

view

<table class="table">
  <thead>
      <th>タイトル</th>
      <th>カテゴリー</th>
      <th>温泉質</th>
      <th>本文</th>
  </thead>

<tbody>
<% @spots.each do |spot| %>
<tr>
  <td><%= spot.name %></td>
  <td><%#= spot.category.try(:name) %></td>
  <td><%= spot.quality %></td>
  <td><%= spot.introduction %></td>
</tr>
<% end %>
</tbody>

</table>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?