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
History | View | Annotate | Download (1.82 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 | 1592:72d9219f2f19 | Chris | <div class="projects box"> |
| 15 | <h3><%=l(:label_projects_busy)%></h3> |
||
| 16 | <% cache(:action => 'explore', :action_suffix => 'busy_projects') do %>
|
||
| 17 | <%= render :partial => 'activities/busy' %>
|
||
| 18 | 1530:83a2227efc71 | Chris | <% end %>
|
| 19 | 1592:72d9219f2f19 | Chris | <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }, :class => 'more' %>
|
| 20 | 1010:76a677c96bce | chris | </div>
|
| 21 | 1213:17305097e652 | chris | </div>
|
| 22 | 1021:967fb7e62b1d | chris | |
| 23 | 1213:17305097e652 | chris | <div class="threecolumnright"> |
| 24 | <div class="projects box"> |
||
| 25 | 1322:596e34bffcc7 | chris | <h3><%=l(:label_project_latest)%></h3> |
| 26 | <%= render :partial => 'projects/latest' %>
|
||
| 27 | <%= link_to l(:label_projects_more), { :controller => 'projects' }, :class => 'more' %>
|
||
| 28 | 1213:17305097e652 | chris | </div>
|
| 29 | </div>
|
||
| 30 | |||
| 31 | <div class="threecolumnmid"> |
||
| 32 | 1501:467282ce64a4 | Chris | <div class="projects box"> |
| 33 | <h3><%=l(:label_projects_mature)%></h3> |
||
| 34 | 1530:83a2227efc71 | Chris | <% cache(:action => 'explore', :action_suffix => 'mature_projects') do %>
|
| 35 | 1501:467282ce64a4 | Chris | <%= render :partial => 'projects/mature' %>
|
| 36 | 1530:83a2227efc71 | Chris | <% end %>
|
| 37 | 1501:467282ce64a4 | Chris | <%= link_to l(:label_projects_more), { :controller => 'projects' }, :class => 'more' %>
|
| 38 | </div>
|
||
| 39 | </div>
|
||
| 40 | |||
| 41 | 1592:72d9219f2f19 | Chris | <div class="tags box" style="clear:all"> |
| 42 | <h3><%=l(:label_project_tags_all)%></h3> |
||
| 43 | <% cache(:action => 'explore', :action_suffix => 'tags') do %>
|
||
| 44 | <%= render :partial => 'projects/tagcloud' %>
|
||
| 45 | <% end %>
|
||
| 46 | </div>
|
||
| 47 | |||
| 48 | |||
| 49 | 1213:17305097e652 | chris | <% html_title(l(:label_explore_projects)) -%> |