Sha256: 10a63bc9286e9a83fd90e6f7731196eddce6b3557dedc9b3f1561fc1e3fc8931

Contents?: true

Size: 929 Bytes

Versions: 19

Compression:

Stored size: 929 Bytes

Contents

<section id="followers">
  <%= render partial: 'toolbar/profile', locals: { :subject => current_subject } %>

  <section class="followers tabbable">
    <ul class="nav nav-tabs">
      <li class="active">
      <a data-toggle="tab" href="#following"><%=t('follow.followings')%></a>
      </li>
      <li class="">
      <a data-toggle="tab" href="#follower"><%=t('follow.followers')%></a>
      </li>
    </ul>
    <div class="tab-content">
      <div id="following" class="tab-pane active offset1">
        <%= render @followings.
          page(params[:page]).
          per(20).
          map { |f| current_subject.contact_to!(f) } %>
      </div>
      <div id="follower" class="tab-pane offset1 ">
        <%= render @followers.
          page(params[:page]).
          per(20).
          map { |f| current_subject.contact_to!(f) } %>
      </div>
    </div>
  </section>

  <%= render partial: 'sidebar/show' %>
</section>

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
social_stream-2.1.1 base/app/views/followers/index.html.erb
social_stream-2.1.0 base/app/views/followers/index.html.erb
social_stream-base-2.1.0 app/views/followers/index.html.erb
social_stream-2.0.4 base/app/views/followers/index.html.erb
social_stream-base-2.0.4 app/views/followers/index.html.erb
social_stream-2.0.3 base/app/views/followers/index.html.erb
social_stream-base-2.0.3 app/views/followers/index.html.erb
social_stream-2.0.2 base/app/views/followers/index.html.erb
social_stream-base-2.0.2 app/views/followers/index.html.erb
social_stream-2.0.1 base/app/views/followers/index.html.erb
social_stream-base-2.0.1 app/views/followers/index.html.erb
social_stream-2.0.0 base/app/views/followers/index.html.erb
social_stream-base-2.0.0 app/views/followers/index.html.erb
social_stream-2.0.0.beta3 base/app/views/followers/index.html.erb
social_stream-base-2.0.0.beta3 app/views/followers/index.html.erb
social_stream-2.0.0.beta2 base/app/views/followers/index.html.erb
social_stream-base-2.0.0.beta2 app/views/followers/index.html.erb
social_stream-2.0.0.beta1 base/app/views/followers/index.html.erb
social_stream-base-2.0.0.beta1 app/views/followers/index.html.erb