##// END OF EJS Templates
Don't show an empty table....
Jean-Philippe Lang -
r15514:6aff505b902c
parent child
Show More
@@ -16,6 +16,7
16 16 <% end %>
17 17 &nbsp;
18 18
19 <% if @projects.any? %>
19 20 <div class="autoscroll">
20 21 <table class="list">
21 22 <thead><tr>
@@ -41,4 +42,7
41 42 </tbody>
42 43 </table>
43 44 </div>
44 <span class="pagination"><%= pagination_links_full @project_pages, @project_count %></span> No newline at end of file
45 <span class="pagination"><%= pagination_links_full @project_pages, @project_count %></span>
46 <% else %>
47 <p class="nodata"><%= l(:label_no_data) %></p>
48 <% end %>
@@ -22,6 +22,7
22 22 <% end %>
23 23 &nbsp;
24 24
25 <% if @users.any? %>
25 26 <div class="autoscroll">
26 27 <table class="list users">
27 28 <thead><tr>
@@ -54,5 +55,8
54 55 </table>
55 56 </div>
56 57 <span class="pagination"><%= pagination_links_full @user_pages, @user_count %></span>
58 <% else %>
59 <p class="nodata"><%= l(:label_no_data) %></p>
60 <% end %>
57 61
58 62 <% html_title(l(:label_user_plural)) -%>
General Comments 0
You need to be logged in to leave comments. Login now