diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-10-19 19:26:07 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-10-19 19:26:07 +0000 |
commit | c058bc224549c82faa4771673a2126ebfe19ccf3 (patch) | |
tree | 1fe7388db4652fc1836c9c689616643209507aca | |
parent | f3baa5bfeedad593b1a82e310bbc7831e342ee37 (diff) | |
download | redmine-c058bc224549c82faa4771673a2126ebfe19ccf3.tar.gz redmine-c058bc224549c82faa4771673a2126ebfe19ccf3.zip |
Remove the Description label from the issue view and omit the block if empty (#6677).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4264 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/show.rhtml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index d1d93da9a..9d0f2257a 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -44,18 +44,19 @@ <%= render_custom_fields_rows(@issue) %> <%= call_hook(:view_issues_show_details_bottom, :issue => @issue) %> </table> -<hr /> +<% if @issue.description? || @issue.attachments.any? -%> +<hr /> <div class="contextual"> -<%= link_to_remote_if_authorized(l(:button_quote), { :url => {:action => 'reply', :id => @issue} }, :class => 'icon icon-comment') unless @issue.description.blank? %> +<%= link_to_remote_if_authorized(l(:button_quote), { :url => {:action => 'reply', :id => @issue} }, :class => 'icon icon-comment') if @issue.description? %> </div> -<p><strong><%=l(:field_description)%></strong></p> <div class="wiki"> <%= textilizable @issue, :description, :attachments => @issue.attachments %> </div> <%= link_to_attachments @issue %> +<% end -%> <%= call_hook(:view_issues_show_description_bottom, :issue => @issue) %> |