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 @ 1356:a6a25685e5a6

History | View | Annotate | Download (1.87 KB)

1 1041:af23bcbbd911 chris
<% content_for :header_tags do %>
2
    <%= stylesheet_link_tag 'redmine_tags', :plugin => 'redmine_tags' %>
3
<% end %>
4 1007:3e52bc15dd67 chris
5 1193:d67ed1030451 chris
<div class="contextual">
6 1302:f9a81a1a4425 Chris
    <%= link_to l(:label_project_all), { :controller => 'projects', :action => 'index' }%>
7 1322:596e34bffcc7 chris
    <%= ('| ' + link_to(l(:label_search_projects), { :controller => 'search', :action => 'index', :projects => 1 })).html_safe %>
8 1303:537026b96b8b Chris
    <%= ('| ' + 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 1193:d67ed1030451 chris
</div>
10
11 1194:6676c0284df2 chris
<h2><%= l(:label_explore_projects) %></h2>
12
13 1213:17305097e652 chris
<div class="threecolumnleft">
14 1347:f1fb4091d7f3 Chris
<% cache(:action => 'explore', :action_suffix => 'tags') do %>
15 1010:76a677c96bce chris
  <div class="tags box">
16
  <h3><%=l(:label_project_tags_all)%></h3>
17
    <%= render :partial => 'projects/tagcloud' %>
18
  </div>
19 1021:967fb7e62b1d chris
<% end %>
20 1213:17305097e652 chris
</div>
21 1021:967fb7e62b1d chris
22 1213:17305097e652 chris
<div class="threecolumnright">
23
  <div class="projects box">
24 1322:596e34bffcc7 chris
  <h3><%=l(:label_project_latest)%></h3>
25
    <%= render :partial => 'projects/latest' %>
26
    <%= link_to l(:label_projects_more), { :controller => 'projects' }, :class => 'more' %>
27 1213:17305097e652 chris
  </div>
28
</div>
29
30
<div class="threecolumnleft">
31 1347:f1fb4091d7f3 Chris
  <% cache(:action => 'explore', :action_suffix => 'busy_institutions') do %>
32 1010:76a677c96bce chris
  <div class="institutions box">
33
  <h3><%=l(:label_institutions_busy)%></h3>
34
    <%= render :partial => 'activities/busy_institution' %>
35 1189:3e874cee63af chris
    <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
36 1010:76a677c96bce chris
  </div>
37 1021:967fb7e62b1d chris
  <% end %>
38 1213:17305097e652 chris
</div>
39
40
<div class="threecolumnmid">
41 1347:f1fb4091d7f3 Chris
  <% cache(:action => 'explore', :action_suffix => 'busy_projects') do %>
42 1007:3e52bc15dd67 chris
  <div class="projects box">
43
  <h3><%=l(:label_projects_busy)%></h3>
44
    <%= render :partial => 'activities/busy' %>
45 1189:3e874cee63af chris
    <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
46 1009:066b55d7c053 chris
  </div>
47 1021:967fb7e62b1d chris
  <% end %>
48 1007:3e52bc15dd67 chris
</div>
49 1213:17305097e652 chris
50
<% html_title(l(:label_explore_projects)) -%>