annotate app/views/mailer/_issue_text_html.rhtml @ 775:a7cb76a52ec0
feature_14
Route needed by the set_fieldset_status action (called by xhr).
author |
luisf <luis.figueira@eecs.qmul.ac.uk> |
date |
Thu, 17 Nov 2011 14:52:13 +0000 |
parents |
051f544170fe |
children |
|
rev |
line source |
Chris@0
|
1 <h1><%= link_to(h("#{issue.tracker.name} ##{issue.id}: #{issue.subject}"), issue_url) %></h1>
|
Chris@0
|
2
|
Chris@0
|
3 <ul>
|
Chris@0
|
4 <li><%=l(:field_author)%>: <%=h issue.author %></li>
|
Chris@0
|
5 <li><%=l(:field_status)%>: <%=h issue.status %></li>
|
Chris@0
|
6 <li><%=l(:field_priority)%>: <%=h issue.priority %></li>
|
Chris@0
|
7 <li><%=l(:field_assigned_to)%>: <%=h issue.assigned_to %></li>
|
Chris@0
|
8 <li><%=l(:field_category)%>: <%=h issue.category %></li>
|
Chris@0
|
9 <li><%=l(:field_fixed_version)%>: <%=h issue.fixed_version %></li>
|
Chris@245
|
10 <% issue.custom_field_values.each do |c| %>
|
Chris@0
|
11 <li><%=h c.custom_field.name %>: <%=h show_value(c) %></li>
|
Chris@0
|
12 <% end %>
|
Chris@0
|
13 </ul>
|
Chris@0
|
14
|
Chris@0
|
15 <%= textilizable(issue, :description, :only_path => false) %>
|