<%=l(:field_status)%> : <%= @issue.status.name %>     <%=l(:field_priority)%> : <%= @issue.priority.name %>     <%=l(:field_assigned_to)%> : <%= @issue.assigned_to ? @issue.assigned_to.display_name : "-" %>     <%=l(:field_category)%> : <%= @issue.category ? @issue.category.name : "-" %>
<%=l(:field_author)%> : <%= @issue.author.display_name %>
<%=l(:field_subject)%> : <%= @issue.subject %>
<%=l(:field_description)%> : <%= simple_format auto_link @issue.description %>
<%=l(:field_due_date)%> : <%= format_date(@issue.due_date) %>
<%=l(:field_created_on)%> : <%= format_date(@issue.created_on) %>
<% for custom_value in @custom_values %><%= custom_value.custom_field.name %> : <%= show_value custom_value %>
<% end %> <% if authorize_for('issues', 'edit') %> <%= start_form_tag ({:controller => 'issues', :action => 'edit', :id => @issue}, :method => "get" ) %> <%= submit_tag l(:button_edit) %> <%= end_form_tag %> <% end %> <% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %> <%= start_form_tag ({:controller => 'issues', :action => 'change_status', :id => @issue}) %> <%= submit_tag l(:button_change) %> <%= end_form_tag %> <% end %> <% if authorize_for('issues', 'destroy') %> <%= start_form_tag ({:controller => 'issues', :action => 'destroy', :id => @issue} ) %> <%= submit_tag l(:button_delete) %> <%= end_form_tag %> <% end %><%= format_date(history.created_on) %> | <%= history.author.display_name %> | <%= history.status.name %> |
<%= history.notes %> |
<%= link_to attachment.filename, :action => 'download', :id => @issue, :attachment_id => attachment %> (<%= human_size(attachment.filesize) %>) | <%= format_date(attachment.created_on) %> | <%= attachment.author.display_name %> | <% if authorize_for('issues', 'destroy_attachment') %><%= start_form_tag :action => 'destroy_attachment', :id => @issue, :attachment_id => attachment %> <%= submit_tag l(:button_delete), :class => "button-small" %> <%= end_form_tag %> | <% end %>