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 / projects / explore.html.erb @ 1034:ea5d9652c6f6

History | View | Annotate | Download (966 Bytes)

1

    
2
<% cache(:action => 'explore', :action_suffix => 'tags', :expires_in => 1.hour) do %>
3
<h2><%= l(:label_explore_projects) %></h2>
4
  <div class="tags box">
5
  <h3><%=l(:label_project_tags_all)%></h3>
6
    <%= render :partial => 'projects/tagcloud' %>
7
  </div>
8
<% end %>
9

    
10
<div class="splitcontentleft">
11
  <% cache(:action => 'explore', :action_suffix => 'busy_institutions', :expires_in => 1.hour) do %>
12
  <div class="institutions box">
13
  <h3><%=l(:label_institutions_busy)%></h3>
14
    <%= render :partial => 'activities/busy_institution' %>
15
  </div>
16
  <% end %>
17
  <div class="projects box">
18
  <h3><%=l(:label_project_latest)%></h3>
19
    <%= render :partial => 'projects/latest' %>
20
  </div>
21
</div>
22
<div class="splitcontentright">
23
  <% cache(:action => 'explore', :action_suffix => 'busy_projects', :expires_in => 1.hour) do %>
24
  <div class="projects box">
25
  <h3><%=l(:label_projects_busy)%></h3>
26
    <%= render :partial => 'activities/busy' %>
27
  </div>
28
  <% end %>
29
</div>