To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / my / blocks / _colleagues.html.erb @ 1298:4f746d8966dd

History | View | Annotate | Download (262 Bytes)

1

    
2
<% colleagues = all_colleagues_of(@user) %>
3

    
4
<% if !colleagues.empty? %>
5
<div id="activity">
6
  <h3><%=l(:label_my_colleagues)%></h3>
7
  <div class="activity box" id="active-colleagues">
8
    <%= render_active_colleagues(colleagues) %>
9
  </div>
10
</div>
11
<% end %>
12

    
13