kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.5 KiB
42 lines
1.5 KiB
13 years ago
|
<% breadcrumb_paths(nil) %>
|
||
18 years ago
|
<div class="splitcontentleft">
|
||
14 years ago
|
<div class="wiki"><%= textilizable Setting.welcome_text %></div>
|
||
17 years ago
|
<% if @news.any? %>
|
||
12 years ago
|
<div class="news mypage-box">
|
||
19 years ago
|
<h3><%=l(:label_news_latest)%></h3>
|
||
13 years ago
|
<div class="overview">
|
||
18 years ago
|
<%= render :partial => 'news/news', :collection => @news %>
|
||
17 years ago
|
<%= link_to l(:label_news_view_all), :controller => 'news' %>
|
||
13 years ago
|
|
||
|
</div>
|
||
17 years ago
|
</div>
|
||
|
<% end %>
|
||
16 years ago
|
<%= call_hook(:view_welcome_index_left, :projects => @projects) %>
|
||
18 years ago
|
</div>
|
||
|
|
||
|
<div class="splitcontentright">
|
||
17 years ago
|
<% if @projects.any? %>
|
||
13 years ago
|
<div class="projects mypage-box overview">
|
||
15 years ago
|
<h3><%=l(:label_project_latest)%></h3>
|
||
19 years ago
|
<ul>
|
||
18 years ago
|
<% for project in @projects %>
|
||
15 years ago
|
<% @project = project %>
|
||
18 years ago
|
<li>
|
||
14 years ago
|
<%= link_to_project project %> (<%= format_time(project.created_on) %>)
|
||
17 years ago
|
<%= textilizable project.short_description, :project => project %>
|
||
18 years ago
|
</li>
|
||
|
<% end %>
|
||
15 years ago
|
<% @project = nil %>
|
||
18 years ago
|
</ul>
|
||
17 years ago
|
</div>
|
||
|
<% end %>
|
||
16 years ago
|
<%= call_hook(:view_welcome_index_right, :projects => @projects) %>
|
||
14 years ago
|
</div>
|
||
18 years ago
|
|
||
|
<% content_for :header_tags do %>
|
||
17 years ago
|
<%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
|
||
|
:title => "#{Setting.app_title}: #{l(:label_news_latest)}") %>
|
||
14 years ago
|
<%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
|
||
17 years ago
|
:title => "#{Setting.app_title}: #{l(:label_activity)}") %>
|
||
17 years ago
|
<% end %>
|