diff options
author | Go MAEDA <maeda@farend.jp> | 2023-08-31 13:21:34 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-08-31 13:21:34 +0000 |
commit | fe9ef2fc27189d2d3c2ef7726c15e7c2a712cefa (patch) | |
tree | d1a22c1532e80225e8832ca6534f1d19eee215ec /app/views/issue_statuses/index.html.erb | |
parent | 2415c9f5d780c3b47e5b76cbd6207f361facb026 (diff) | |
download | redmine-fe9ef2fc27189d2d3c2ef7726c15e7c2a712cefa.tar.gz redmine-fe9ef2fc27189d2d3c2ef7726c15e7c2a712cefa.zip |
Add description for issue statuses and display them in issue new/edit form (#2568).
Patch by Takenori TAKAKI.
git-svn-id: https://svn.redmine.org/redmine/trunk@22288 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issue_statuses/index.html.erb')
-rw-r--r-- | app/views/issue_statuses/index.html.erb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/issue_statuses/index.html.erb b/app/views/issue_statuses/index.html.erb index c9f120cbd..509abd831 100644 --- a/app/views/issue_statuses/index.html.erb +++ b/app/views/issue_statuses/index.html.erb @@ -12,6 +12,7 @@ <th><%=l(:field_done_ratio)%></th> <% end %> <th><%=l(:field_is_closed)%></th> + <th><%=l(:field_description)%></th> <th></th> <th></th> </tr></thead> @@ -23,6 +24,7 @@ <td><%= status.default_done_ratio %></td> <% end %> <td><%= checked_image status.is_closed? %></td> + <td class="description"><%= status.description %></td> <td> <% unless WorkflowTransition.where('old_status_id = ? OR new_status_id = ?', status.id, status.id).exists? %> <span class="icon icon-warning"> |