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 @ 1358:b8f94812d737

History | View | Annotate | Download (1.87 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_all), { :controller => 'projects', :action => 'index' }%>
7
    <%= ('| ' + link_to(l(:label_search_projects), { :controller => 'search', :action => 'index', :projects => 1 })).html_safe %>
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) %>
9
</div>
10

    
11
<h2><%= l(:label_explore_projects) %></h2>
12

    
13
<div class="threecolumnleft">
14
<% cache(:action => 'explore', :action_suffix => 'tags') do %>
15
  <div class="tags box">
16
  <h3><%=l(:label_project_tags_all)%></h3>
17
    <%= render :partial => 'projects/tagcloud' %>
18
  </div>
19
<% end %>
20
</div>
21

    
22
<div class="threecolumnright">
23
  <div class="projects box">
24
  <h3><%=l(:label_project_latest)%></h3>
25
    <%= render :partial => 'projects/latest' %>
26
    <%= link_to l(:label_projects_more), { :controller => 'projects' }, :class => 'more' %>
27
  </div>
28
</div>
29

    
30
<div class="threecolumnleft">
31
  <% cache(:action => 'explore', :action_suffix => 'busy_institutions') do %>
32
  <div class="institutions box">
33
  <h3><%=l(:label_institutions_busy)%></h3>
34
    <%= render :partial => 'activities/busy_institution' %>
35
    <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
36
  </div>
37
  <% end %>
38
</div>
39

    
40
<div class="threecolumnmid">
41
  <% cache(:action => 'explore', :action_suffix => 'busy_projects') do %>
42
  <div class="projects box">
43
  <h3><%=l(:label_projects_busy)%></h3>
44
    <%= render :partial => 'activities/busy' %>
45
    <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
46
  </div>
47
  <% end %>
48
</div>
49

    
50
<% html_title(l(:label_explore_projects)) -%>