1- < b > <%= I18n . t :field_subject %> </ b > : <%= h tooltip . subject %> < br />
2- < b > <%= I18n . t :field_tracker_id %> </ b > : <%= h tooltip . tracker %> < br />
3- < b > <%= I18n . t :story_status %> </ b > : <%= h status_label_or_default ( tooltip ) %> < br />
4- < b > <%= I18n . t :field_category %> </ b > : <%= h tooltip . category %> < br />
5- < b > <%= I18n . t :story_points %> </ b > : <%= h story_points_or_empty ( tooltip ) %> < br />
6- < b > <%= I18n . t :story_estimation_hours %> </ b > : <%= h tooltip . estimated_hours %> < br />
7- < b > <%= I18n . t :story_spent_time %> </ b > : <%= tooltip . total_spent_hours . round ( 2 ) %> < br />
8- < b > <%= I18n . t :story_remaining_hours %> </ b > : <%= h remaining_hours_or_empty ( tooltip ) %> < br />
9- < b > <%= I18n . t :field_assigned_to %> </ b > : <%= h assignee_name_or_empty ( tooltip ) %> < br />
10- < b > <%= I18n . t :field_project %> </ b > : <%= h project_name_or_empty ( tooltip ) %> < br />
11- < b > <%= I18n . t :field_release %> </ b > : <%= h release_or_empty ( tooltip ) %> < br />
12- < div > <%= textilizable tooltip , :description , :attachments => tooltip . attachments%> </ div >
13-
1+ < p class ="issue-field "> < label > <%= I18n . t :field_subject %> :</ label > <%= h tooltip . subject %> </ p >
2+ < p class ="issue-field "> < label > <%= I18n . t :field_tracker_id %> :</ label > <%= h tooltip . tracker %> </ p >
3+ < p class ="issue-field "> < label > <%= I18n . t :story_status %> :</ label > <%= h status_label_or_default ( tooltip ) %> </ p >
4+ <% unless tooltip . category . blank? %>
5+ < p class ="issue-field "> < label > <%= I18n . t :field_category %> :</ label > <%= h tooltip . category %> </ p >
6+ <% end %>
7+ <% unless tooltip . story_points . blank? %>
8+ < p class ="issue-field "> < label > <%= I18n . t :story_points %> :</ label > <%= h story_points_or_empty ( tooltip ) %> </ p >
9+ <% end %>
10+ <% unless tooltip . estimated_hours . blank? %>
11+ < p class ="issue-field "> < label > <%= I18n . t :story_estimation_hours %> :</ label > <%= h tooltip . estimated_hours %> </ p >
12+ <% end %>
13+ <% unless tooltip . total_spent_hours . blank? %>
14+ < p class ="issue-field "> < label > <%= I18n . t :story_spent_time %> :</ label > <%= tooltip . total_spent_hours . round ( 2 ) %> </ p >
15+ <% end %>
16+ <% unless tooltip . remaining_hours . blank? %>
17+ < p class ="issue-field "> < label > <%= I18n . t :story_remaining_hours %> :</ label > <%= h remaining_hours_or_empty ( tooltip ) %> </ p >
18+ <% end %>
19+ <% unless tooltip . assigned_to . blank? %>
20+ < p class ="issue-field "> < label > <%= I18n . t :field_assigned_to %> :</ label > <%= h assignee_name_or_empty ( tooltip ) %> </ p >
21+ <% end %>
22+ < p class ="issue-field "> < label > <%= I18n . t :field_project %> :</ label > <%= h project_name_or_empty ( tooltip ) %> </ p >
23+ <% unless tooltip . release_id . blank? %>
24+ < p class ="issue-field "> < label > <%= I18n . t :field_release %> :</ label > <%= h release_or_empty ( tooltip ) %> </ p >
25+ <% end %>
1426<%= h custom_fields_or_empty ( tooltip ) %>
27+ <% unless tooltip . description . blank? %>
28+ < div class ="issue-description "> <%= textilizable tooltip , :description , :attachments => tooltip . attachments %> </ div >
29+ <% end %>
0 commit comments