Sha256: d17256b3e975c7b5afde3d021921f490f3f923dd1a2f9f7d90b9dac1020c858b

Contents?: true

Size: 919 Bytes

Versions: 5

Compression:

Stored size: 919 Bytes

Contents

<div class="modal-div">

<!-- Text to trigger modal -->
<h4><i class="icon-hand-left"></i><a data-toggle="modal" href="#followers">Follower(s):</a>  <%= @followers.count %></h4>
<!-- Modal -->
<div class="modal hide in" id="followers" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
  </div>
  <div class="modal-body">
    <% if @followers.count > 0 %>
      <h3>Follower(s)</h3>
      <ul>
      <% @followers.each do |f| %>
        <li> <a href="<%= sufia.profile_path(f.login) %>" title="View user's profile"><%= f.name %></a></li>
      <% end %>
      </ul>
    <%else%>
      <h3>No Followers</h3>
    <%end %>
  </div>
  <div class="modal-footer">
    <button class="btn btn-primary" data-dismiss="modal" aria-hidden="true">Close</button>
  </div>
</div>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sufia-3.7.2 app/views/users/_follower_modal.html.erb
sufia-3.7.1 app/views/users/_follower_modal.html.erb
sufia-3.7.0 app/views/users/_follower_modal.html.erb
sufia-3.6.1 app/views/users/_follower_modal.html.erb
sufia-3.6.0 app/views/users/_follower_modal.html.erb