Sha256: 09d30d75fe7bc56b3dd735b34acc4c09d615ff5cf58d3872725b1a6b7cd346d5

Contents?: true

Size: 1.34 KB

Versions: 12

Compression:

Stored size: 1.34 KB

Contents

<header class="thredded--topic-header">
  <h1 class="thredded--topic-header--title"><%= topic.title %></h1>
  <cite class="thredded--topic-header--started-by">
    <%= t 'thredded.topics.started_by_html',
          time_ago: time_ago(topic.created_at),
          user:     user_link(topic.user) %>
  </cite>
  <% if topic.can_update? %>
    <%= link_to t('thredded.topics.edit'), topic.edit_path,
                class: 'thredded--topic-header--edit-topic' %>
  <% end %>
  <% if thredded_current_user %>
    <% if topic.followed? %>
      <div class="thredded--topic-header--follow-info">
        <span class="thredded--topic-header--follow-info--reason">
          <%= topic_follow_reason_text topic.follow_reason %>
        </span>
        <%= button_to topic.unfollow_path, form: {class: 'thredded--topic-header--follow-info--unfollow'} do %>
          <%= t('thredded.topics.unfollow') %>
          <%= inline_svg 'thredded/follow.svg', class: 'thredded--topic-header--follow-icon' %>
        <% end %>
      </div>
    <% else %>
      <div class="thredded--topic-header--follow-info">
        <%= button_to t('thredded.topics.follow'), topic.follow_path,
                      form: {class: 'thredded--topic-header--follow-info--follow'} %>
      </div>
    <% end %>
  <% end %>
  <%= render partial: 'thredded/topics/followers', locals: {topic: topic} %>
</header>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
thredded-0.12.1 app/views/thredded/topics/_header.html.erb
thredded-0.12.0 app/views/thredded/topics/_header.html.erb
thredded-0.11.1 app/views/thredded/topics/_header.html.erb
thredded-0.11.0 app/views/thredded/topics/_header.html.erb
thredded-0.10.1 app/views/thredded/topics/_header.html.erb
thredded-0.10.0 app/views/thredded/topics/_header.html.erb
thredded-0.9.4 app/views/thredded/topics/_header.html.erb
thredded-0.9.3 app/views/thredded/topics/_header.html.erb
thredded-0.9.2 app/views/thredded/topics/_header.html.erb
thredded-0.9.1 app/views/thredded/topics/_header.html.erb
thredded-0.8.4 app/views/thredded/topics/_header.html.erb
thredded-0.8.2 app/views/thredded/topics/_header.html.erb