You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_issue.html.erb 604B

1234567891011121314151617
  1. <h1>
  2. <%= link_to("#{issue.tracker.name} ##{issue.id}: #{issue.subject}", issue_url) %>
  3. <%= issue_status_type_badge(issue.status) %>
  4. </h1>
  5. <%= render_email_issue_attributes(issue, user, true) %>
  6. <%= textilizable(issue, :description, :only_path => false) %>
  7. <% if issue.attachments.any? %>
  8. <fieldset class="attachments"><legend><%= l(:label_attachment_plural) %></legend>
  9. <% issue.attachments.each do |attachment| %>
  10. <%= link_to_attachment attachment, :download => true, :only_path => false %>
  11. (<%= number_to_human_size(attachment.filesize) %>)<br />
  12. <% end %>
  13. </fieldset>
  14. <% end %>