kissingcomputer/app/views/profiles/index.html.erb

32 lines
726 B
Text
Raw Normal View History

2026-01-10 16:17:07 +00:00
<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>