summaryrefslogtreecommitdiffstats
path: root/app/views/admin
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2022-10-01 06:54:27 +0000
committerGo MAEDA <maeda@farend.jp>2022-10-01 06:54:27 +0000
commit5b0e4a8e2d6e5c802673f622fa0a838218d95f16 (patch)
treee9e7209d7a92811aa0402193bb33eb6df0197bdd /app/views/admin
parentca516e8c25a4c98fc7ee0f7b5c9fe0282b580c59 (diff)
downloadredmine-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/views/admin')
-rw-r--r--app/views/admin/plugins.html.erb8
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>