To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / mailer / _issue.html.erb @ 1270:b2f7f52a164d
History | View | Annotate | Download (635 Bytes)
| 1 |
<h1><%= link_to(h("#{issue.tracker.name} ##{issue.id}: #{issue.subject}"), issue_url) %></h1> |
|---|---|
| 2 |
|
| 3 |
<ul>
|
| 4 |
<li><%=l(:field_author)%>: <%=h issue.author %></li> |
| 5 |
<li><%=l(:field_status)%>: <%=h issue.status %></li> |
| 6 |
<li><%=l(:field_priority)%>: <%=h issue.priority %></li> |
| 7 |
<li><%=l(:field_assigned_to)%>: <%=h issue.assigned_to %></li> |
| 8 |
<li><%=l(:field_category)%>: <%=h issue.category %></li> |
| 9 |
<li><%=l(:field_fixed_version)%>: <%=h issue.fixed_version %></li> |
| 10 |
<% issue.custom_field_values.each do |c| %>
|
| 11 |
<li><%=h c.custom_field.name %>: <%=h show_value(c) %></li> |
| 12 |
<% end %>
|
| 13 |
</ul>
|
| 14 |
|
| 15 |
<%= textilizable(issue, :description, :only_path => false) %>
|