view app/views/projects/explore.html.erb @ 1021:967fb7e62b1d browsing

Include only public projects in busy institutions / projects queries, so results can be cached (the tag cloud was already public projects only). Introduce tentatively some cacheing thingies
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 13 Nov 2012 10:35:23 +0000
parents 76a677c96bce
children ff1556010d8b
line wrap: on
line source

<% cache(:action => 'explore', :action_suffix => 'tags') do %>
<h2><%= l(:label_explore_projects) %></h2>
  <div class="tags box">
  <h3><%=l(:label_project_tags_all)%></h3>
    <%= render :partial => 'projects/tagcloud' %>
  </div>
<% end %>

<div class="splitcontentleft">
  <% cache(:action => 'explore', :action_suffix => 'busy_institutions') do %>
  <div class="institutions box">
  <h3><%=l(:label_institutions_busy)%></h3>
    <%= render :partial => 'activities/busy_institution' %>
  </div>
  <% end %>
  <div class="projects box">
  <h3><%=l(:label_project_latest)%></h3>
    <%= render :partial => 'projects/latest' %>
  </div>
</div>
<div class="splitcontentright">
  <% cache(:action => 'explore', :action_suffix => 'busy_projects') do %>
  <div class="projects box">
  <h3><%=l(:label_projects_busy)%></h3>
    <%= render :partial => 'activities/busy' %>
  </div>
  <% end %>
</div>