Sha256: 2167e1f98de553567161a2c2897f7bb4e04fd467d61a19a72905422f76eb8e6f

Contents?: true

Size: 1.43 KB

Versions: 8

Compression:

Stored size: 1.43 KB

Contents

<%= content_tag :article,
                id:    dom_id(topic),
                class: ['thredded--topics--topic', topic_css_classes(topic)],
                data: {topic: topic.id, messageboard: topic.messageboard_id} do %>
  <div class="thredded--topics--posts-count"><%= topic.posts_count %></div>

  <div class="thredded--topics--follow-info" title="<%= topic_follow_reason_text topic.follow_reason %>">
    <svg class="thredded--topics--follow-icon" viewBox="0 0 116 121" role="img">
      <% if topic.followed? %>
        <use xlink:href="#thredded-follow-icon"/>
      <% else %>
        <use xlink:href="#thredded-unfollow-icon"/>
      <% end %>
    </svg>
  </div>

  <h1 class="thredded--topics--title">
    <%= link_to topic.title, topic.path %>
  </h1>

  <% if topic.categories.any? %>
    <ul class="thredded--topics--categories">
      <%= render topic.categories %>
    </ul>
  <% end %>

  <cite class="thredded--topics--updated-by">
    <%= time_ago topic.last_post_at %>
    <%= user_link topic.last_user %>
  </cite>

  <cite class="thredded--topics--started-by">
    <%= time_ago topic.created_at %>
    <%= user_link topic.user %>
  </cite>

  <% if topic.blocked? && topic.can_moderate? %>
    <span class="thredded--topics--moderation-state thredded--alert thredded--alert-danger">
      <%= render 'thredded/shared/content_moderation_blocked_state', moderation_record: topic.last_moderation_record %>
    </span>
  <% end %>
<% end %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
thredded-0.10.0 app/views/thredded/topics/_topic.html.erb
thredded-0.9.4 app/views/thredded/topics/_topic.html.erb
thredded-0.9.3 app/views/thredded/topics/_topic.html.erb
thredded-0.9.2 app/views/thredded/topics/_topic.html.erb
thredded-0.9.1 app/views/thredded/topics/_topic.html.erb
thredded-0.8.4 app/views/thredded/topics/_topic.html.erb
thredded-0.8.2 app/views/thredded/topics/_topic.html.erb
thredded-0.7.0 app/views/thredded/topics/_topic.html.erb