Added by John Kern about 8 years ago
Hello!
I wanted to add some columns to issue related table, so I made it in _relations.html.erb
<%= other_issue.estimated_hours %> <%= progress_bar(other_issue.done_ratio) %>
it works.
And now I wish to add a column with a custom field.
<%= other_issue.custom_field_values_7 %>
doesn't work.
and the second what I wanted, is to make an order relation issues by other_issue.priority and custom_field_values_7
I cannot find the place where I can make it.
Any help is appreciated.