Skip to content
Snippets Groups Projects
Commit 005f4baa authored by Jean-Philippe Lang's avatar Jean-Philippe Lang
Browse files

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
parent 2b014258
Branches
Tags
No related merge requests found
...@@ -34,6 +34,9 @@ ...@@ -34,6 +34,9 @@
<% end %> <% end %>
<%= error_messages_for 'query' %> <%= error_messages_for 'query' %>
<% if @query.valid? %> <% if @query.valid? %>
<% if @issues.empty? %>
<p><i><%= l(:label_no_data) %></i></p>
<% else %>
&nbsp; &nbsp;
<table class="listTableContent"> <table class="listTableContent">
<tr> <tr>
...@@ -84,4 +87,5 @@ ...@@ -84,4 +87,5 @@
</p> </p>
<%= submit_tag l(:button_move) %> <%= submit_tag l(:button_move) %>
<%= end_form_tag %> <%= end_form_tag %>
<% end %>
<% end %> <% end %>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment