Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_issue.html.erb 553B

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