Sidebar Private Icon
<!-- Forums List -->
<% else %>
<% @forums.each do |forum| %>
<div class="selector_item forum <%= sidebar_tab_active("forum_#{forum.id}")%>">
<%= link_to forum_path(forum,:trailing_slash=>true) do %>
<span class="name"><%= shorten_string(forum.title,20) %></span>
<!-- if the forum is private, include this: -->
<span class="icon icon_private"></span>
<span class="count">
<%= forum_topic_counts[forum.id] %>
<span class="icon icon-right-arrow">›</span>
</span>
<% end %>
</div>
<% end %>