diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-21 11:14:57 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-21 11:14:57 +0200 |
commit | 3f8e4e2a302622ecb84b989f0f9d24f76419c3fe (patch) | |
tree | 95704ca0c8cf23b8bfd67ea4081fc8e6e46e9a19 /settings/templates/apps.php | |
parent | 0eda75a19378302fcdadd72cf6537745fd7ee736 (diff) | |
download | nextcloud-server-3f8e4e2a302622ecb84b989f0f9d24f76419c3fe.tar.gz nextcloud-server-3f8e4e2a302622ecb84b989f0f9d24f76419c3fe.zip |
added controls bar for Apps and Help
Diffstat (limited to 'settings/templates/apps.php')
-rw-r--r-- | settings/templates/apps.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index d5375c06fc4..d420b6ad0ba 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -1,11 +1,14 @@ +<div id="controls"> + <a class="button" target="_blank" href="http://apps.owncloud.com/"><?php echo $l->t('Add your application');?></a> +</div> <ul id="leftcontent"> <?php foreach($_['apps'] as $app):?> - <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>"> - <?php echo $app['name'] ?> - <span class="hidden"> - <?php echo json_encode($app) ?> - </span> - </li> + <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>"> + <?php echo $app['name'] ?> + <span class="hidden"> + <?php echo json_encode($app) ?> + </span> + </li> <?php endforeach;?> </ul> <div id="rightcontent"> |