OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/user_mailer/_issue_details.html.erb

16 lines
770 B

<h1><%= link_to "#{issue.tracker.name} ##{issue.id}: #{issue.subject}", issue_url(issue) %></h1>
<ul>
<li><%= t(:field_author) %>: <%= issue.author %></li>
<li><%= t(:field_status) %>: <%= issue.status %></li>
<li><%= t(:field_priority) %>: <%= issue.priority %></li>
<li><%= t(:field_assigned_to) %>: <%= issue.assigned_to %></li>
<li><%= t(:field_category) %>: <%= issue.category %></li>
<li><%= t(:field_fixed_version) %>: <%= issue.fixed_version %></li>
<% issue.custom_field_values.each do |value| %>
<li><%= value.custom_field.name %>: <%= show_value(value) %></li>
<% end %>
</ul>
<%= textilizable(issue.description, :only_path => false, :object => issue, :project => issue.project) %>