diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 13:45:43 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 13:45:43 +0200 |
commit | 4b26740e9f98ab90581f513c62637c71c4bc6509 (patch) | |
tree | 534193c3b09b8d605673da5a5cbbb093aba1cec3 /admin/templates | |
parent | 544c61f983571c87e0753775b53dcf2866848ed2 (diff) | |
download | nextcloud-server-4b26740e9f98ab90581f513c62637c71c4bc6509.tar.gz nextcloud-server-4b26740e9f98ab90581f513c62637c71c4bc6509.zip |
beautified backend, first iteration
Diffstat (limited to 'admin/templates')
-rw-r--r-- | admin/templates/appsinst.php | 27 | ||||
-rw-r--r-- | admin/templates/users.php | 16 |
2 files changed, 10 insertions, 33 deletions
diff --git a/admin/templates/appsinst.php b/admin/templates/appsinst.php index d205d95cc34..e845cb451fd 100644 --- a/admin/templates/appsinst.php +++ b/admin/templates/appsinst.php @@ -1,20 +1,7 @@ -<table> - <thead> - <tr> - <th><?php echo $l->t( 'Name' ); ?></th> - <th><?php echo $l->t( 'Version' ); ?></th> - <th><?php echo $l->t( 'Author' ); ?></th> - <th><?php echo $l->t( 'Status' ); ?></th> - </tr> - </thead> - <tbody> - <?php foreach($_["apps"] as $app): ?> - <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><input x-use="appenablebutton" type="submit" value="<?php echo $l->t( $app['enabled'] ? 'enabled' : 'disabled' ); ?>" class="appbutton <?php echo( $app['enabled'] ? 'enabled' : 'disabled' ); ?>" /></td> - </tr> - <?php endforeach; ?> - </tbody> -</table> +<ul id="apps"> +<?php foreach($_["apps"] as $app): ?> + <li x-uid="<?php echo($app['id']); ?>"><strong><?php echo($app['name']); ?></strong> <?php echo($app['version']); ?> <em>by <?php echo($app['author']); ?></em> + <input x-use="appenablebutton" type="submit" value="<?php echo $l->t( $app['enabled'] ? 'enabled' : 'disabled' ); ?>" class="appbutton <?php echo( $app['enabled'] ? 'enabled' : 'disabled' ); ?>" /> + </li> +<?php endforeach; ?> +</ul> diff --git a/admin/templates/users.php b/admin/templates/users.php index 79a4c712049..c16270edbf4 100644 --- a/admin/templates/users.php +++ b/admin/templates/users.php @@ -8,7 +8,7 @@ <th></th> </tr> </thead> - <tfoot> + <tbody> <tr id="createuserform"> <form id="createuserdata"> <td> @@ -26,8 +26,6 @@ </td> </form> </tr> - </tfoot> - <tbody> <?php foreach($_["users"] as $user): ?> <tr x-uid="<?php echo $user["name"] ?>"> <td x-use="username"><span x-use="usernamediv"><?php echo $user["name"]; ?></span></td> @@ -44,23 +42,15 @@ </fieldset> <fieldset> - <legend><?php echo $l->t( 'Groups' ); ?></legend> + <legend><?php echo $l->t( 'Groups' ); ?></legend> <table id="grouptable"> - <thead> - <tr> - <th><?php echo $l->t( 'Name' ); ?></th> - <th></th> - </tr> - </thead> - <tfoot> + <tbody> <form id="creategroupdata"> <tr> <td><input x-use="creategroupfield" type="text" name="groupname" placeholder="New group" /></td> <td><input type="submit" id="creategroupbutton" value="<?php echo $l->t( 'Create group' ); ?>" /></td> </tr> </form> - </tfoot> - <tbody> <?php foreach($_["groups"] as $group): ?> <tr x-gid="<?php echo $group["name"]; ?>"> <td><?php echo $group["name"] ?></td> |