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 @ 1302:f9a81a1a4425
History | View | Annotate | Download (2.07 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 | <%= '| ' + link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') if User.current.allowed_to?(:add_project, nil, :global => true) %>
|
||
| 8 | 1193:d67ed1030451 | chris | </div>
|
| 9 | |||
| 10 | 1194:6676c0284df2 | chris | <h2><%= l(:label_explore_projects) %></h2> |
| 11 | |||
| 12 | 1213:17305097e652 | chris | <div class="threecolumnleft"> |
| 13 | 1032:ff1556010d8b | chris | <% cache(:action => 'explore', :action_suffix => 'tags', :expires_in => 1.hour) do %>
|
| 14 | 1010:76a677c96bce | chris | <div class="tags box"> |
| 15 | <h3><%=l(:label_project_tags_all)%></h3> |
||
| 16 | <%= render :partial => 'projects/tagcloud' %>
|
||
| 17 | </div>
|
||
| 18 | 1021:967fb7e62b1d | chris | <% end %>
|
| 19 | 1213:17305097e652 | chris | </div>
|
| 20 | 1021:967fb7e62b1d | chris | |
| 21 | 1213:17305097e652 | chris | <div class="threecolumnright"> |
| 22 | <% cache(:action => 'explore', :action_suffix => 'mature_projects', :expires_in => 1.hour) do %>
|
||
| 23 | <div class="projects box"> |
||
| 24 | <h3><%=l(:label_projects_mature)%></h3> |
||
| 25 | <%= render :partial => 'projects/mature' %>
|
||
| 26 | </div>
|
||
| 27 | <% end %>
|
||
| 28 | </div>
|
||
| 29 | |||
| 30 | <div class="threecolumnleft"> |
||
| 31 | 1032:ff1556010d8b | chris | <% cache(:action => 'explore', :action_suffix => 'busy_institutions', :expires_in => 1.hour) 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="threecolumnright"> |
||
| 41 | 1007:3e52bc15dd67 | chris | <div class="projects box"> |
| 42 | <h3><%=l(:label_project_latest)%></h3> |
||
| 43 | <%= render :partial => 'projects/latest' %>
|
||
| 44 | 1189:3e874cee63af | chris | <%= link_to l(:label_projects_more), { :controller => 'projects' }, :class => 'more' %>
|
| 45 | 1007:3e52bc15dd67 | chris | </div>
|
| 46 | </div>
|
||
| 47 | 1213:17305097e652 | chris | |
| 48 | <div class="threecolumnmid"> |
||
| 49 | 1032:ff1556010d8b | chris | <% cache(:action => 'explore', :action_suffix => 'busy_projects', :expires_in => 1.hour) do %>
|
| 50 | 1007:3e52bc15dd67 | chris | <div class="projects box"> |
| 51 | <h3><%=l(:label_projects_busy)%></h3> |
||
| 52 | <%= render :partial => 'activities/busy' %>
|
||
| 53 | 1189:3e874cee63af | chris | <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
|
| 54 | 1009:066b55d7c053 | chris | </div>
|
| 55 | 1021:967fb7e62b1d | chris | <% end %>
|
| 56 | 1007:3e52bc15dd67 | chris | </div>
|
| 57 | 1213:17305097e652 | chris | |
| 58 | <% html_title(l(:label_explore_projects)) -%> |