2007-04-21 16:40:56 +00:00
|
|
|
<h2><%=l(:label_project_plural)%></h2>
|
2006-06-28 18:11:03 +00:00
|
|
|
|
2007-09-14 19:55:51 +00:00
|
|
|
<% @project_tree.keys.sort.each do |project| %>
|
2007-12-03 10:28:08 +00:00
|
|
|
<h3><%= link_to h(project.name), {:action => 'show', :id => project}, :class => (User.current.member_of?(project) ? "icon icon-fav" : "") %></h3>
|
2008-01-20 18:37:51 +00:00
|
|
|
<%= textilizable(project.short_description, :project => project) %>
|
2007-09-14 19:55:51 +00:00
|
|
|
|
|
|
|
<% if @project_tree[project].any? %>
|
2007-09-22 13:17:49 +00:00
|
|
|
<p><%= l(:label_subproject_plural) %>:
|
2007-09-14 19:55:51 +00:00
|
|
|
<%= @project_tree[project].sort.collect {|subproject|
|
2007-12-03 10:28:08 +00:00
|
|
|
link_to(h(subproject.name), {:action => 'show', :id => subproject}, :class => (User.current.member_of?(subproject) ? "icon icon-fav" : ""))}.join(', ') %></p>
|
2007-09-14 19:55:51 +00:00
|
|
|
<% end %>
|
2006-06-28 18:11:03 +00:00
|
|
|
<% end %>
|
2007-03-12 17:59:02 +00:00
|
|
|
|
2007-08-29 16:52:35 +00:00
|
|
|
<% if User.current.logged? %>
|
2007-04-21 16:40:56 +00:00
|
|
|
<div class="contextual">
|
|
|
|
<span class="icon icon-fav"><%= l(:label_my_projects) %></span>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2007-12-07 18:42:40 +00:00
|
|
|
|
2008-01-02 22:41:53 +00:00
|
|
|
<% html_title(l(:label_project_plural)) -%>
|