annotate app/views/mailer/.svn/text-base/_issue_text_html.rhtml.svn-base @ 507:0c939c159af4 redmine-1.2

Update to Redmine 1.2.1 on 1.2-stable branch (Redmine SVN rev 6270)
author Chris Cannam
date Thu, 14 Jul 2011 10:32:19 +0100
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) %>