##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15599:17233e868110
r15869:b40d66f39fa8
Show More
_relations.html.erb
22 lines | 791 B | text/plain | TextLexer
/ app / views / issues / _relations.html.erb
Jean-Philippe Lang
Application layout refactored....
r736 <div class="contextual">
Jean-Philippe Lang
Code cleanup....
r5324 <% if User.current.allowed_to?(:manage_issue_relations, @project) %>
Jean-Baptiste Barth
Focus on the input when adding a related issue on issues/show page. #4656...
r3801 <%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
</div>
<p><strong><%=l(:label_related_issues)%></strong></p>
Jean-Philippe Lang
Issue relations first commit (not thoroughly tested). 4 kinds of relation are available:...
r503
Jean-Philippe Lang
Moves relations fetching from views to the controller and skip invalid relations (#7385)....
r4621 <% if @relations.present? %>
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do %>
Jean-Philippe Lang
Extracts the rendering of related issues to an helper (#3425)....
r15599 <%= render_issue_relations(@issue, @relations) %>
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
Jean-Philippe Lang
Issue relations first commit (not thoroughly tested). 4 kinds of relation are available:...
r503
Toshi MARUYAMA
view: remote_form_for: equals sign mandatory to print blocks and replace to form_for and use :remote => true and :as...
r9388 <%= form_for @relation, {
:as => :relation, :remote => true,
Jean-Philippe Lang
Code cleanup, use named routes....
r10839 :url => issue_relations_path(@issue),
Jean-Philippe Lang
Application layout refactored....
r736 :method => :post,
Jean-Philippe Lang
Always instanciate a relation....
r11380 :html => {:id => 'new-relation-form', :style => 'display: none;'}
Toshi MARUYAMA
view: remote_form_for: equals sign mandatory to print blocks and replace to form_for and use :remote => true and :as...
r9388 } do |f| %>
Jean-Philippe Lang
Application layout refactored....
r736 <%= render :partial => 'issue_relations/form', :locals => {:f => f}%>
Jean-Philippe Lang
Issue relations first commit (not thoroughly tested). 4 kinds of relation are available:...
r503 <% end %>