From 005f4baaa4efa0dec6d8fe7ca213f414857bb968 2006-12-16 13:45:56 From: Jean-Philippe Lang Date: 2006-12-16 13:45:56 Subject: [PATCH] issues table is no more displayed if there is no issue to display git-svn-id: http://redmine.rubyforge.org/svn/trunk@96 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/projects/list_issues.rhtml b/app/views/projects/list_issues.rhtml index 4a49a18..5f0d028 100644 --- a/app/views/projects/list_issues.rhtml +++ b/app/views/projects/list_issues.rhtml @@ -34,6 +34,9 @@ <% end %> <%= error_messages_for 'query' %> <% if @query.valid? %> +<% if @issues.empty? %> +

<%= l(:label_no_data) %>

+<% else %>   @@ -84,4 +87,5 @@

<%= submit_tag l(:button_move) %> <%= end_form_tag %> +<% end %> <% end %> \ No newline at end of file