Sha256: e0ffc0db28434ac38dcf4d6c6e912fdc9dcb0888827297cb1f9c82e0dd946e74

Contents?: true

Size: 903 Bytes

Versions: 1

Compression:

Stored size: 903 Bytes

Contents

<div class="row">
  <div class="col-md-11">
    <h1><%= icon "thumb-tack", class: "text-muted" if @forum_thread.pinned? %> <%= @forum_thread.title %></h1>
  </div>

  <% if is_moderator_or_owner?(@forum_thread) %>
    <div class="col-md-1">
      <%= link_to icon("pencil"), simple_discussion.edit_forum_thread_path(@forum_thread),
        class: "text-muted",
        data: { toggle: "tooltip", placement: "left" },
        title: "Edit this thread" %>
    </div>
  <% end %>

</div>

<p class="thread-details">
  <strong><%= category_link(@forum_thread.forum_category) %></strong>
  • Asked <%= time_ago_in_words(@forum_thread.created_at) + ' ago' %> by <%= @forum_thread.user.name %>
</p>

<%= render partial: "simple_discussion/forum_posts/forum_post", collection: @forum_thread.forum_posts.includes(:user).sorted %>

<%= render partial: "simple_discussion/forum_posts/form" if user_signed_in? %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_discussion-0.9.5 app/views/simple_discussion/forum_threads/show.html.erb