To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / projects / explore.html.erb @ 1245:d8e15cc24494
History | View | Annotate | Download (1.97 KB)
| 1 |
<% content_for :header_tags do %>
|
|---|---|
| 2 |
<%= stylesheet_link_tag 'redmine_tags', :plugin => 'redmine_tags' %>
|
| 3 |
<% end %>
|
| 4 |
|
| 5 |
<div class="contextual"> |
| 6 |
<%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') if User.current.allowed_to?(:add_project, nil, :global => true) %>
|
| 7 |
</div>
|
| 8 |
|
| 9 |
<h2><%= l(:label_explore_projects) %></h2> |
| 10 |
|
| 11 |
<div class="threecolumnleft"> |
| 12 |
<% cache(:action => 'explore', :action_suffix => 'tags', :expires_in => 1.hour) do %>
|
| 13 |
<div class="tags box"> |
| 14 |
<h3><%=l(:label_project_tags_all)%></h3> |
| 15 |
<%= render :partial => 'projects/tagcloud' %>
|
| 16 |
</div>
|
| 17 |
<% end %>
|
| 18 |
</div>
|
| 19 |
|
| 20 |
<div class="threecolumnright"> |
| 21 |
<% cache(:action => 'explore', :action_suffix => 'mature_projects', :expires_in => 1.hour) do %>
|
| 22 |
<div class="projects box"> |
| 23 |
<h3><%=l(:label_projects_mature)%></h3> |
| 24 |
<%= render :partial => 'projects/mature' %>
|
| 25 |
</div>
|
| 26 |
<% end %>
|
| 27 |
</div>
|
| 28 |
|
| 29 |
<div class="threecolumnleft"> |
| 30 |
<% cache(:action => 'explore', :action_suffix => 'busy_institutions', :expires_in => 1.hour) do %>
|
| 31 |
<div class="institutions box"> |
| 32 |
<h3><%=l(:label_institutions_busy)%></h3> |
| 33 |
<%= render :partial => 'activities/busy_institution' %>
|
| 34 |
<%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
|
| 35 |
</div>
|
| 36 |
<% end %>
|
| 37 |
</div>
|
| 38 |
|
| 39 |
<div class="threecolumnright"> |
| 40 |
<div class="projects box"> |
| 41 |
<h3><%=l(:label_project_latest)%></h3> |
| 42 |
<%= render :partial => 'projects/latest' %>
|
| 43 |
<%= link_to l(:label_projects_more), { :controller => 'projects' }, :class => 'more' %>
|
| 44 |
</div>
|
| 45 |
</div>
|
| 46 |
|
| 47 |
<div class="threecolumnmid"> |
| 48 |
<% cache(:action => 'explore', :action_suffix => 'busy_projects', :expires_in => 1.hour) do %>
|
| 49 |
<div class="projects box"> |
| 50 |
<h3><%=l(:label_projects_busy)%></h3> |
| 51 |
<%= render :partial => 'activities/busy' %>
|
| 52 |
<%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
|
| 53 |
</div>
|
| 54 |
<% end %>
|
| 55 |
</div>
|
| 56 |
|
| 57 |
<% html_title(l(:label_explore_projects)) -%>
|