page.html.erb
36 lines
| 1.0 KiB
| text/plain
|
TextLexer
|
r330 | <div class="contextual"> | ||
<%= link_to l(:label_personalize_page), :action => 'page_layout' %> | ||||
</div> | ||||
<h2><%=l(:label_my_page)%></h2> | ||||
<div id="list-top"> | ||||
|
r7222 | <% @blocks['top'].each do |b| | ||
next unless MyController::BLOCKS.keys.include? b %> | ||||
<div class="mypage-box"> | ||||
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %> | ||||
</div> | ||||
<% end if @blocks['top'] %> | ||||
|
r330 | </div> | ||
<div id="list-left" class="splitcontentleft"> | ||||
|
r7222 | <% @blocks['left'].each do |b| | ||
next unless MyController::BLOCKS.keys.include? b %> | ||||
<div class="mypage-box"> | ||||
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %> | ||||
</div> | ||||
<% end if @blocks['left'] %> | ||||
|
r330 | </div> | ||
<div id="list-right" class="splitcontentright"> | ||||
|
r7222 | <% @blocks['right'].each do |b| | ||
next unless MyController::BLOCKS.keys.include? b %> | ||||
<div class="mypage-box"> | ||||
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %> | ||||
</div> | ||||
<% end if @blocks['right'] %> | ||||
|
r330 | </div> | ||
|
r8042 | <%= context_menu issues_context_menu_path %> | ||
|
r951 | |||
|
r1019 | <% html_title(l(:label_my_page)) -%> | ||