To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / mailer / _issue.html.erb @ 1591:63650ae64bf2

History | View | Annotate | Download (563 Bytes)

1
<h1><%= link_to(h("#{issue.tracker.name} ##{issue.id}: #{issue.subject}"), issue_url) %></h1>
2

    
3
<%= render_email_issue_attributes(issue, users.first, true) %>
4

    
5
<%= textilizable(issue, :description, :only_path => false) %>
6

    
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 %>