2026-01-10 16:17:07 +00:00
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
<h2>My Posts</h2>
|
|
|
|
|
<%= link_to "Back", members_path %>
|
|
|
|
|
<% @posts.each do |post| %>
|
|
|
|
|
<section class="posts"><%= post.created_at %> |
|
|
|
|
|
Title: <%= post.post_title %><br><br>
|
|
|
|
|
<% if post.icon_image.attached? %>
|
|
|
|
|
<%= image_tag post.icon_image, width: "100", height: "100" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<p>No avatar image available.</p>
|
|
|
|
|
<% end %><br>
|
|
|
|
|
Content:
|
|
|
|
|
<%= truncate(post.text.to_plain_text, length: 400) %>
|
|
|
|
|
<br>
|
|
|
|
|
<%= link_to 'Show', member_blog_post_path(@member, @blog, post) %>
|
|
|
|
|
<% if current_user %>
|
|
|
|
|
|
|
|
|
|
<%= link_to 'Edit', edit_member_blog_post_path(@member, @blog, post) %>
|
|
|
|
|
<%= link_to 'Destroy', member_blog_post_path(@member, @blog, post), data: {
|
2026-01-10 16:29:27 +00:00
|
|
|
turbo_method: :delete,
|
|
|
|
|
turbo_confirm: "Are you sureee?"
|
2026-01-10 16:17:07 +00:00
|
|
|
} %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</section>
|
|
|
|
|
<% end %>
|
|
|
|
|
|