Defect #43175 » 0001-Add-HTML-closing-tag.patch
app/views/imports/_users_saved_objects.html.erb | ||
---|---|---|
17 | 17 |
<td><%= user.lastname %></td> |
18 | 18 |
<td><%= mail_to(user.mail) %></td> |
19 | 19 |
<td><%= checked_image user.admin? %></td> |
20 |
<td><%= l(("status_#{User::LABEL_BY_STATUS[user.status]}")) %> |
|
20 |
<td><%= l(("status_#{User::LABEL_BY_STATUS[user.status]}")) %></td>
|
|
21 | 21 |
</tr> |
22 | 22 |
<% end %> |
23 | 23 |
</tbody> |
app/views/mail_handler/new.html.erb | ||
---|---|---|
14 | 14 | |
15 | 15 |
<fieldset> |
16 | 16 |
<legend>Raw Email</legend> |
17 |
<%= text_area_tag 'email', '', :style => 'width:95%; height:400px;' %></label> |
|
17 |
<label><%= text_area_tag 'email', '', :style => 'width:95%; height:400px;' %></label>
|
|
18 | 18 |
</fieldset> |
19 | 19 | |
20 | 20 |
<fieldset> |
app/views/projects/show.html.erb | ||
---|---|---|
102 | 102 |
<h3 class="icon icon-time"><%= sprite_icon('time', l(:label_time_tracking)) %></h3> |
103 | 103 |
<ul> |
104 | 104 |
<% if @total_estimated_hours.present? %> |
105 |
<li><%= l(:field_estimated_hours) %>: <%= l_hours(@total_estimated_hours) %> |
|
105 |
<li><%= l(:field_estimated_hours) %>: <%= l_hours(@total_estimated_hours) %></li>
|
|
106 | 106 |
<% end %> |
107 | 107 |
<% if @total_hours.present? %> |
108 |
<li><%= l(:label_spent_time) %>: <%= l_hours(@total_hours) %>
|
|
108 |
<li><%= l(:label_spent_time) %>: <%= l_hours(@total_hours) %></li>
|
|
109 | 109 |
<% end %> |
110 | 110 |
</ul> |
111 | 111 |
<p> |