mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-01 03:57:15 +00:00
Fix missing HTML closing tags in several views (#43175).
Patch by Takashi Kato (user:tohosaku). git-svn-id: https://svn.redmine.org/redmine/trunk@23936 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
7d629345ca
commit
b1c25dfc8b
@ -17,7 +17,7 @@
|
||||
<td><%= user.lastname %></td>
|
||||
<td><%= mail_to(user.mail) %></td>
|
||||
<td><%= checked_image user.admin? %></td>
|
||||
<td><%= l(("status_#{User::LABEL_BY_STATUS[user.status]}")) %>
|
||||
<td><%= l(("status_#{User::LABEL_BY_STATUS[user.status]}")) %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
|
||||
@ -7,8 +7,9 @@
|
||||
<% if @categories.size > 0 %>
|
||||
<label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_issue_category_reassign_to) %></label>:
|
||||
<%= label_tag "reassign_to_id", l(:description_issue_category_reassign), :class => "hidden-for-sighted" %>
|
||||
<%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %></p>
|
||||
<%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %>
|
||||
<% end %>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<%= submit_tag l(:button_apply) %>
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
|
||||
<fieldset>
|
||||
<legend>Raw Email</legend>
|
||||
<%= text_area_tag 'email', '', :style => 'width:95%; height:400px;' %></label>
|
||||
<label><%= text_area_tag 'email', '', :style => 'width:95%; height:400px;' %></label>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
|
||||
@ -102,10 +102,10 @@
|
||||
<h3 class="icon icon-time"><%= sprite_icon('time', l(:label_time_tracking)) %></h3>
|
||||
<ul>
|
||||
<% if @total_estimated_hours.present? %>
|
||||
<li><%= l(:field_estimated_hours) %>: <%= l_hours(@total_estimated_hours) %>
|
||||
<li><%= l(:field_estimated_hours) %>: <%= l_hours(@total_estimated_hours) %></li>
|
||||
<% end %>
|
||||
<% if @total_hours.present? %>
|
||||
<li><%= l(:label_spent_time) %>: <%= l_hours(@total_hours) %>
|
||||
<li><%= l(:label_spent_time) %>: <%= l_hours(@total_hours) %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<p>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user