Sha256: 13a04b0c6425589c0547136f505663470af283aab765003a48db4528a710455f

Contents?: true

Size: 1.45 KB

Versions: 12

Compression:

Stored size: 1.45 KB

Contents

<header class="thredded--topic-header">
  <%= view_hooks.topic_page.title.render self, topic: topic do %>
    <h1 class="thredded--topic-header--title"><%= topic.title %></h1>
  <% end %>
  <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',
                rel: 'nofollow' %>
  <% 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.16.14 app/views/thredded/topics/_header.html.erb
thredded-0.16.13 app/views/thredded/topics/_header.html.erb
thredded-0.16.12 app/views/thredded/topics/_header.html.erb
thredded-0.16.11 app/views/thredded/topics/_header.html.erb
thredded-0.16.10 app/views/thredded/topics/_header.html.erb
thredded-0.16.9 app/views/thredded/topics/_header.html.erb
thredded-0.16.8 app/views/thredded/topics/_header.html.erb
thredded-0.16.7 app/views/thredded/topics/_header.html.erb
thredded-0.16.6 app/views/thredded/topics/_header.html.erb
thredded-0.16.5 app/views/thredded/topics/_header.html.erb
thredded-0.16.4 app/views/thredded/topics/_header.html.erb
thredded-0.16.3 app/views/thredded/topics/_header.html.erb