diff options
author | Go MAEDA <maeda@farend.jp> | 2022-10-01 06:54:27 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2022-10-01 06:54:27 +0000 |
commit | 5b0e4a8e2d6e5c802673f622fa0a838218d95f16 (patch) | |
tree | e9e7209d7a92811aa0402193bb33eb6df0197bdd /app | |
parent | ca516e8c25a4c98fc7ee0f7b5c9fe0282b580c59 (diff) | |
download | redmine-5b0e4a8e2d6e5c802673f622fa0a838218d95f16.tar.gz redmine-5b0e4a8e2d6e5c802673f622fa0a838218d95f16.zip |
Add table header in Plugins page (#37692).
Patch by Go MAEDA.
git-svn-id: https://svn.redmine.org/redmine/trunk@21879 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/admin/plugins.html.erb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/admin/plugins.html.erb b/app/views/admin/plugins.html.erb index 3d88c90d0..c2d9f7b0d 100644 --- a/app/views/admin/plugins.html.erb +++ b/app/views/admin/plugins.html.erb @@ -3,6 +3,13 @@ <% if @plugins.any? %> <div class="autoscroll"> <table class="list plugins"> + <thead><tr> + <th><%= l(:field_name) %> / <%= l(:field_description) %></th> + <th><%= l(:field_author) %></th> + <th><%= l(:label_version) %></th> + <th></th> + </tr></thead> + <tbody> <% @plugins.each do |plugin| %> <tr id="plugin-<%= plugin.id %>"> <td class="name"><span class="name"><%= plugin.name %></span> @@ -14,6 +21,7 @@ <td class="configure"><%= link_to(l(:button_configure), plugin_settings_path(plugin)) if plugin.configurable? %></td> </tr> <% end %> + </tbody> </table> </div> <p><a href="#" id="check-for-updates"><%= l(:label_check_for_updates) %></a></p> |