diff options
author | Kamil Domanski <kdomanski@kdemail.net> | 2011-06-20 19:21:42 +0200 |
---|---|---|
committer | Kamil Domanski <kdomanski@kdemail.net> | 2011-06-20 20:46:31 +0200 |
commit | d38e958ada1390c36112ab2b0b4b28d1cae3e1df (patch) | |
tree | 9725b0a33fd9a9272cc4d3442222ab7df6d5617b /admin/templates | |
parent | 0f0d37b85cfd3aea57c1d54ff005d881b55af304 (diff) | |
download | nextcloud-server-d38e958ada1390c36112ab2b0b4b28d1cae3e1df.tar.gz nextcloud-server-d38e958ada1390c36112ab2b0b4b28d1cae3e1df.zip |
enable/disable apps by clicking their status
Diffstat (limited to 'admin/templates')
-rw-r--r-- | admin/templates/appsinst.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/templates/appsinst.php b/admin/templates/appsinst.php index c1acc09d5d3..482273da1df 100644 --- a/admin/templates/appsinst.php +++ b/admin/templates/appsinst.php @@ -16,11 +16,11 @@ </thead> <tbody> <?php foreach($_["apps"] as $app): ?> - <tr> + <tr x-uid="<?php echo($app['id']); ?>"> <td class="name" width="200"><?php echo($app['name']); ?></td> <td class="version"><?php echo($app['version']); ?></td> <td><?php echo($app['author']); ?></td> - <td class="<?php echo $app['enabled'] ? 'enabled' : 'disabled' ?>"><?php echo $l->t( $app['enabled'] ? 'enabled' : 'disabled' ); ?></td> + <td class="<?php echo $app['enabled'] ? 'enabled' : 'disabled' ?>"><div x-use="appenableddiv"><?php echo $l->t( $app['enabled'] ? 'enabled' : 'disabled' ); ?></div></td> </tr> <?php endforeach; ?> </tbody> |