docbrown/app/views/organizations/_sidebar_additional.html.erb
Anna Buyanova 074d50d2b7 Stories views reorganization (#1317)
* Added stories feature specs

* Structure feature specs

* Spec for the articles by tag page

* Spec for clicking "week" button on the tag page

* Reorganize stories views

* Feature spec for displaying sponsors on tag page

* Increase allowed rspec example length

* Spec for the users comments view

* Articles by tag: reeplace view code with rendering partials
2018-12-13 14:54:02 -05:00

21 lines
774 B
Text

<div id="sidebar-wrapper-right" class="sidebar-wrapper sidebar-wrapper-right">
<div class="sidebar-bg" id="sidebar-bg-right"></div>
<div class="side-bar sidebar-additional showing" id="sidebar-additional">
<% if @organization.users.any? %>
<div class="widget">
<div class="widget-suggested-follows-container">
<header>meet the team</header>
<div class="widget-body">
<% @organization.users.each do |user| %>
<div class="widget-user-pic">
<a href="/<%= user.username %>">
<img src="<%= ProfileImage.new(user).get(90) %>" />
</a>
</div>
<% end %>
</div>
</div>
</div>
<% end %>
</div>
</div>