annotate app/views/projects/explore.html.erb @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents 72d9219f2f19
children
rev   line source
chris@1041 1 <% content_for :header_tags do %>
chris@1041 2 <%= stylesheet_link_tag 'redmine_tags', :plugin => 'redmine_tags' %>
chris@1041 3 <% end %>
chris@1007 4
chris@1193 5 <div class="contextual">
Chris@1302 6 <%= link_to l(:label_project_all), { :controller => 'projects', :action => 'index' }%>
chris@1322 7 <%= ('| ' + link_to(l(:label_search_projects), { :controller => 'search', :action => 'index', :projects => 1 })).html_safe %>
Chris@1303 8 <%= ('| ' + link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add')).html_safe if User.current.allowed_to?(:add_project, nil, :global => true) %>
chris@1193 9 </div>
chris@1193 10
chris@1194 11 <h2><%= l(:label_explore_projects) %></h2>
chris@1194 12
chris@1213 13 <div class="threecolumnleft">
Chris@1592 14 <div class="projects box">
Chris@1592 15 <h3><%=l(:label_projects_busy)%></h3>
Chris@1592 16 <% cache(:action => 'explore', :action_suffix => 'busy_projects') do %>
Chris@1592 17 <%= render :partial => 'activities/busy' %>
Chris@1530 18 <% end %>
Chris@1592 19 <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
chris@1010 20 </div>
chris@1213 21 </div>
chris@1021 22
chris@1213 23 <div class="threecolumnright">
chris@1213 24 <div class="projects box">
chris@1322 25 <h3><%=l(:label_project_latest)%></h3>
chris@1322 26 <%= render :partial => 'projects/latest' %>
chris@1322 27 <%= link_to l(:label_projects_more), { :controller => 'projects' }, :class => 'more' %>
chris@1213 28 </div>
chris@1213 29 </div>
chris@1213 30
chris@1213 31 <div class="threecolumnmid">
Chris@1501 32 <div class="projects box">
Chris@1501 33 <h3><%=l(:label_projects_mature)%></h3>
Chris@1530 34 <% cache(:action => 'explore', :action_suffix => 'mature_projects') do %>
Chris@1501 35 <%= render :partial => 'projects/mature' %>
Chris@1530 36 <% end %>
Chris@1501 37 <%= link_to l(:label_projects_more), { :controller => 'projects' }, :class => 'more' %>
Chris@1501 38 </div>
Chris@1501 39 </div>
Chris@1501 40
Chris@1592 41 <div class="tags box" style="clear:all">
Chris@1592 42 <h3><%=l(:label_project_tags_all)%></h3>
Chris@1592 43 <% cache(:action => 'explore', :action_suffix => 'tags') do %>
Chris@1592 44 <%= render :partial => 'projects/tagcloud' %>
Chris@1592 45 <% end %>
Chris@1592 46 </div>
Chris@1592 47
Chris@1592 48
chris@1213 49 <% html_title(l(:label_explore_projects)) -%>