]> source.dussan.org Git - redmine.git/commitdiff
Remove the Description label from the issue view and omit the block if empty (#6677).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 19 Oct 2010 19:26:07 +0000 (19:26 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 19 Oct 2010 19:26:07 +0000 (19:26 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4264 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/show.rhtml

index d1d93da9aac918e3259d145d6c52182c2ae71951..9d0f2257a3baa77878c51b3a3f9d0daa56416add 100644 (file)
 <%= 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) %>