31 lines
726 B
Text
31 lines
726 B
Text
<h1>Profiles</h1>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Avatar</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @profiles.each do |profile| %>
|
|
<tr>
|
|
<td>| <%= profile.name %></td>
|
|
<td>
|
|
<% if profile.avatar_image.attached? %>
|
|
<%= image_tag profile.avatar_image, alt: "#{profile.name}'s avatar", width: "50", height: "50" %>
|
|
<% else %>
|
|
<p>No avatar image available.</p>
|
|
<% end %>
|
|
</td>
|
|
|
|
<td><%= link_to 'Show', profile_path(profile) %></td>
|
|
|
|
<% if current_user %>
|
|
<td><%= link_to 'Edit', edit_profile_path(profile) %></td>
|
|
<% end %>
|
|
<% end %>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|