diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-21 17:49:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-21 17:49:00 +0000 |
commit | 1d9caa46b1f1d4a8b65f59895a7234f76348ef7a (patch) | |
tree | 2c1f199a6f7ffd68f1e333fa76e819e1f1a5832b /app/views | |
parent | 00f709ad4d5fd0bfd77457b4bbb020c6302daa18 (diff) | |
download | redmine-1d9caa46b1f1d4a8b65f59895a7234f76348ef7a.tar.gz redmine-1d9caa46b1f1d4a8b65f59895a7234f76348ef7a.zip |
Changes required by functional tests updates.
git-svn-id: http://svn.redmine.org/redmine/trunk@15726 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/timelog/report.html.erb | 4 | ||||
-rw-r--r-- | app/views/users/index.html.erb | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/app/views/timelog/report.html.erb b/app/views/timelog/report.html.erb index c798d4873..05ad08b93 100644 --- a/app/views/timelog/report.html.erb +++ b/app/views/timelog/report.html.erb @@ -27,7 +27,9 @@ <% end %> <% unless @report.criteria.empty? %> -<% unless @report.hours.empty? %> +<% if @report.hours.empty? %> +<p class="nodata"><%= l(:label_no_data) %></p> +<% else %> <div class="autoscroll"> <table class="list" id="time-report"> <thead> diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb index c32b46a9c..165f26d46 100644 --- a/app/views/users/index.html.erb +++ b/app/views/users/index.html.erb @@ -23,7 +23,7 @@ <div class="autoscroll"> -<table class="list"> +<table class="list users"> <thead><tr> <%= sort_header_tag('login', :caption => l(:field_login)) %> <%= sort_header_tag('firstname', :caption => l(:field_firstname)) %> |