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

16 lines
655 B

<%= issue.to_s %>
<%= issue_url(issue) %>
<%= Issue.human_attribute_name(:author) %>: <%= issue.author %>
<%= Issue.human_attribute_name(:status) %>: <%= issue.status %>
<%= Issue.human_attribute_name(:priority) %>: <%= issue.priority %>
<%= Issue.human_attribute_name(:assigned_to) %>: <%= issue.assigned_to %>
<%= Issue.human_attribute_name(:category) %>: <%= issue.category %>
<%= Issue.human_attribute_name(:fixed_version) %>: <%= issue.fixed_version %>
<% issue.custom_field_values.each do |value| %>
<%= value.custom_field.name %>: <%= show_value(value) %>
<% end %>
<%= issue.description %>