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.
38 lines
1.1 KiB
38 lines
1.1 KiB
13 years ago
|
<% breadcrumb_paths(l(:label_my_page)) %>
|
||
18 years ago
|
<div class="contextual">
|
||
|
<%= link_to l(:label_personalize_page), :action => 'page_layout' %>
|
||
|
</div>
|
||
|
|
||
|
<h2><%=l(:label_my_page)%></h2>
|
||
|
|
||
|
<div id="list-top">
|
||
14 years ago
|
<% @blocks['top'].each do |b|
|
||
18 years ago
|
next unless MyController::BLOCKS.keys.include? b %>
|
||
14 years ago
|
<div class="mypage-box">
|
||
18 years ago
|
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
|
||
|
</div>
|
||
|
<% end if @blocks['top'] %>
|
||
|
</div>
|
||
|
|
||
|
<div id="list-left" class="splitcontentleft">
|
||
14 years ago
|
<% @blocks['left'].each do |b|
|
||
18 years ago
|
next unless MyController::BLOCKS.keys.include? b %>
|
||
14 years ago
|
<div class="mypage-box">
|
||
18 years ago
|
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
|
||
|
</div>
|
||
|
<% end if @blocks['left'] %>
|
||
|
</div>
|
||
|
|
||
|
<div id="list-right" class="splitcontentright">
|
||
14 years ago
|
<% @blocks['right'].each do |b|
|
||
18 years ago
|
next unless MyController::BLOCKS.keys.include? b %>
|
||
14 years ago
|
<div class="mypage-box">
|
||
18 years ago
|
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
|
||
|
</div>
|
||
|
<% end if @blocks['right'] %>
|
||
|
</div>
|
||
|
|
||
15 years ago
|
<%= context_menu :controller => 'issues', :action => 'context_menu' %>
|
||
17 years ago
|
|
||
17 years ago
|
<% html_title(l(:label_my_page)) -%>
|