##// END OF EJS Templates
add mail footer test (#13482)...
add mail footer test (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11720 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10336:0178b5a2fe07
r11490:9fea2ab6d224
Show More
_conflict.html.erb
26 lines | 1.1 KiB | text/plain | TextLexer
/ app / views / issues / _conflict.html.erb
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 <div class="conflict">
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_conflict.html.erb...
r8671 <%= l(:notice_issue_update_conflict) %>
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 <% if @conflict_journals.present? %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_conflict.html.erb...
r8671 <div class="conflict-details">
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 <% @conflict_journals.sort_by(&:id).each do |journal| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_conflict.html.erb...
r8671 <p><%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></p>
<% if journal.details.any? %>
<ul class="details">
<% details_to_strings(journal.details).each do |string| %>
<li><%= string %></li>
<% end %>
</ul>
<% end %>
<%= textilizable(journal, :notes) unless journal.notes.blank? %>
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 <% end %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_conflict.html.erb...
r8671 </div>
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 <% end %>
</div>
<p>
<label><%= radio_button_tag 'conflict_resolution', 'overwrite' %> <%= l(:text_issue_conflict_resolution_overwrite) %></label><br />
Jean-Philippe Lang
Private issue notes (#1554)....
r10336 <% if @issue.notes.present? %>
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 <label><%= radio_button_tag 'conflict_resolution', 'add_notes' %> <%= l(:text_issue_conflict_resolution_add_notes) %></label><br />
<% end %>
Jean-Philippe Lang
Fixed: escaped link in conflict resolution form (#11341)....
r9742 <label><%= radio_button_tag 'conflict_resolution', 'cancel' %> <%= l(:text_issue_conflict_resolution_cancel, :link => link_to_issue(@issue, :subject => false)).html_safe %></label>
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 </p>
<p><%= submit_tag l(:button_submit) %></p>