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 / activities / _busy_institution.html.erb @ 1531:ae8145b28b2b

History | View | Annotate | Download (552 Bytes)

1
<% events = @events_by_day %>
2
<% if (events.nil?) 
3
     activity = Redmine::Activity::Fetcher.new(User.anonymous)
4
     days = Setting.activity_days_default.to_i
5
     events = activity.events(Date.today - days, Date.today + 1)
6
   end
7
%>
8

    
9
<% if events.empty? %>
10

    
11
<% else %>
12

    
13
   <ul>
14

    
15
   <% 
16
      for institution in busy_institutions(events, 5)
17
   %>
18

    
19
   <li class="busy">
20
     <span class="title">
21
       <%= link_to h(institution), { :controller => 'activities', :institution => institution } %>
22
     </span>
23
   </li>
24

    
25
    <% end %>
26
  </ul>
27
<% end %>
28