To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / vendor / plugins / redmine_tags / app / views / projects / _filtered_projects.rhtml @ 747:ae4054db4f3c
History | View | Annotate | Download (597 Bytes)
| 1 |
<% if @featured_projects && @featured_projects.any? %>
|
|---|---|
| 2 |
|
| 3 |
<div class="splitcontentleft"> |
| 4 |
<%= render_project_hierarchy_with_filtering(@projects, @custom_fields, @question) %>
|
| 5 |
</div>
|
| 6 |
|
| 7 |
<div class="splitcontentright"> |
| 8 |
<h3 id="featured-projects-title"><%=l(:project_filtering_featured_projects_label) %></h3> |
| 9 |
<div id="featured-projects-box" class="box"> |
| 10 |
<%= render_project_hierarchy_with_filtering(@featured_projects, @custom_fields, @question) %>
|
| 11 |
</div>
|
| 12 |
</div>
|
| 13 |
|
| 14 |
<% else %>
|
| 15 |
|
| 16 |
<%= render_project_hierarchy_with_filtering(@projects, @custom_fields, @question) %>
|
| 17 |
|
| 18 |
<% end %>
|
| 19 |
|