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.text.erb

15 lines
585 B

<%= "#{issue.tracker.name} ##{issue.id}: #{issue.subject}" %>
<%= issue_url(issue) %>
<%= t(:field_author) %>: <%= issue.author %>
<%= t(:field_status) %>: <%= issue.status %>
<%= t(:field_priority) %>: <%= issue.priority %>
<%= t(:field_assigned_to) %>: <%= issue.assigned_to %>
<%= t(:field_category) %>: <%= issue.category %>
<%= t(:field_fixed_version) %>: <%= issue.fixed_version %>
<% issue.custom_field_values.each do |value| %>
<%= value.custom_field.name %>: <%= show_value(value) %>
<% end %>
<%= issue.description %>