diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-12-20 08:24:07 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-12-20 08:24:07 +0000 |
commit | 433dd9b90b74c462f86102aa1b732b9fb1b7f28b (patch) | |
tree | 66a7c4a0526f62ae0e0d5a5ad07ebc61d814207c /app/views | |
parent | 7aa1208dbaa9a7e2f6ea32ea46c8cc9b6813eb90 (diff) | |
download | redmine-433dd9b90b74c462f86102aa1b732b9fb1b7f28b.tar.gz redmine-433dd9b90b74c462f86102aa1b732b9fb1b7f28b.zip |
Add missing icons to action links.
git-svn-id: http://svn.redmine.org/redmine/trunk@19383 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/index.html.erb | 4 | ||||
-rw-r--r-- | app/views/timelog/index.html.erb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb index 3377fd681..fccf118c9 100644 --- a/app/views/issues/index.html.erb +++ b/app/views/issues/index.html.erb @@ -4,11 +4,11 @@ <% end %> <%= actions_dropdown do %> <% if @project %> - <%= link_to l(:field_summary), project_issues_report_path(@project) %> + <%= link_to l(:field_summary), project_issues_report_path(@project), :class => 'icon icon-stats' %> <% end %> <% if User.current.allowed_to?(:import_issues, @project, :global => true) %> - <%= link_to l(:button_import), new_issues_import_path(:project_id => @project) %> + <%= link_to l(:button_import), new_issues_import_path(:project_id => @project), :class => 'icon icon-import' %> <% end %> <%= link_to_if_authorized l(:label_settings), diff --git a/app/views/timelog/index.html.erb b/app/views/timelog/index.html.erb index c34a24409..b9afc7475 100644 --- a/app/views/timelog/index.html.erb +++ b/app/views/timelog/index.html.erb @@ -4,7 +4,7 @@ :class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project, :global => true) %> <%= actions_dropdown do %> <% if User.current.allowed_to?(:import_time_entries, @project, :global => true) %> - <%= link_to l(:button_import), new_time_entries_import_path(:project_id => @project) %> + <%= link_to l(:button_import), new_time_entries_import_path(:project_id => @project), :class => 'icon icon-import' %> <% end %> <%= link_to_if_authorized l(:label_settings), |