aboutsummaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2024-11-29 08:08:37 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2024-11-29 08:08:37 +0000
commit520fbf4f963092cb1abec96f6e2ade84f3837220 (patch)
treee6b683e97227a459ae5e76c44a328b5bd341f18c /app/views
parentc20978de1363bf9fbada4afa93319f76680090aa (diff)
make table of unregistered plugins sortable, fixes #4927
Closes #4927 Merge request studip/studip!3698
Diffstat (limited to 'app/views')
-rw-r--r--app/views/admin/plugin/unregistered.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/admin/plugin/unregistered.php b/app/views/admin/plugin/unregistered.php
index 8d0b3db..800d247 100644
--- a/app/views/admin/plugin/unregistered.php
+++ b/app/views/admin/plugin/unregistered.php
@@ -4,16 +4,16 @@
* @var array $unknown_plugins
*/
?>
-<table class="default">
+<table class="default sortable-table" data-sortlist="[[0, 0]]">
<caption>
<?= _('Im Pluginverzeichnis vorhandene Plugins registrieren') ?>
</caption>
<thead>
<tr>
- <th><?= _('Name') ?></th>
- <th><?= _('Pluginklasse') ?></th>
- <th><?= _('Version') ?></th>
- <th><?= _('Ursprung') ?></th>
+ <th data-sort="text"><?= _('Name') ?></th>
+ <th data-sort="text"><?= _('Pluginklasse') ?></th>
+ <th data-sort="digit"><?= _('Version') ?></th>
+ <th data-sort="text"><?= _('Ursprung') ?></th>
<th><?= _('Registrieren') ?></th>
</tr>
</thead>