annotate app/views/my/_block.html.erb @ 1298:4f746d8966dd
redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author |
Chris Cannam |
date |
Fri, 14 Jun 2013 09:28:30 +0100 |
parents |
433d4f72a19b |
children |
|
rev |
line source |
Chris@0
|
1 <div id="block_<%= block_name.dasherize %>" class="mypage-box">
|
Chris@0
|
2
|
Chris@0
|
3 <div style="float:right;margin-right:16px;z-index:500;">
|
Chris@1115
|
4 <%= link_to "", {:action => "remove_block", :block => block_name}, :method => 'post', :class => "close-icon" %>
|
Chris@0
|
5 </div>
|
Chris@909
|
6
|
Chris@0
|
7 <div class="handle">
|
Chris@909
|
8 <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
|
Chris@909
|
9 </div>
|
Chris@909
|
10 </div>
|