4155c97222
There are 2 ways to select a set of issues on the issue list: * by using checkbox and/or the little pencil that will select/unselect all issues (#567) * by clicking on the rows (but not on the links), Ctrl and Shift keys can be used to select multiple issues Context menu was disabled on links so that the default context menu of the browser is displayed when right-clicking on a link (#545). All this was tested with Firefox 2, IE 6/7, Opera 8 (use Alt+Click instead of Right-click) and Safari 2/3. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1130 e93f8b46-1217-0410-a6f0-8f06a7374b81
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
<div class="contextual">
|
|
<%= link_to l(:label_personalize_page), :action => 'page_layout' %>
|
|
</div>
|
|
|
|
<h2><%=l(:label_my_page)%></h2>
|
|
|
|
<div id="list-top">
|
|
<% @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'] %>
|
|
</div>
|
|
|
|
<div id="list-left" class="splitcontentleft">
|
|
<% @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'] %>
|
|
</div>
|
|
|
|
<div id="list-right" class="splitcontentright">
|
|
<% @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'] %>
|
|
</div>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= javascript_include_tag 'context_menu' %>
|
|
<%= stylesheet_link_tag 'context_menu' %>
|
|
<% end %>
|
|
|
|
<div id="context-menu" style="display: none;"></div>
|
|
<%= javascript_tag "new ContextMenu('#{url_for(:controller => 'issues', :action => 'context_menu')}')" %>
|
|
|
|
<% html_title(l(:label_my_page)) -%>
|