##// END OF EJS Templates
Don't show an empty table....
Jean-Philippe Lang -
r15514:6aff505b902c
parent child
Show More
@@ -16,6 +16,7
16 <% end %>
16 <% end %>
17 &nbsp;
17 &nbsp;
18
18
19 <% if @projects.any? %>
19 <div class="autoscroll">
20 <div class="autoscroll">
20 <table class="list">
21 <table class="list">
21 <thead><tr>
22 <thead><tr>
@@ -41,4 +42,7
41 </tbody>
42 </tbody>
42 </table>
43 </table>
43 </div>
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 <% end %>
22 <% end %>
23 &nbsp;
23 &nbsp;
24
24
25 <% if @users.any? %>
25 <div class="autoscroll">
26 <div class="autoscroll">
26 <table class="list users">
27 <table class="list users">
27 <thead><tr>
28 <thead><tr>
@@ -54,5 +55,8
54 </table>
55 </table>
55 </div>
56 </div>
56 <span class="pagination"><%= pagination_links_full @user_pages, @user_count %></span>
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 <% html_title(l(:label_user_plural)) -%>
62 <% html_title(l(:label_user_plural)) -%>
General Comments 0
You need to be logged in to leave comments. Login now