diff options
author | Julius Härtl <github@jus.li> | 2017-10-10 14:57:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-10 14:57:35 +0200 |
commit | 0def38b50ea7281b1c887833a966ce42ff016c36 (patch) | |
tree | 1bc25ac5d2742ea30217bb7a29bc4a065da53d30 /settings/templates/apps.php | |
parent | 968d4f6396e30321a4f05f867edd581ba50c9e81 (diff) | |
parent | bee9ef83c65689990dba852b1944b5cf472eae43 (diff) | |
download | nextcloud-server-0def38b50ea7281b1c887833a966ce42ff016c36.tar.gz nextcloud-server-0def38b50ea7281b1c887833a966ce42ff016c36.zip |
Merge pull request #6739 from nextcloud/apps-management-updates
Add Updates section to app management
Diffstat (limited to 'settings/templates/apps.php')
-rw-r--r-- | settings/templates/apps.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 91a73fcbe56..5d519496598 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -19,6 +19,11 @@ script( {{#each this}} <li id="app-category-{{ident}}" data-category-id="{{ident}}" tabindex="0"> <a href="#" class="icon-category-{{ident}}">{{displayName}}</a> + <div class="app-navigation-entry-utils"> + <ul> + <li class="app-navigation-entry-utils-counter">{{ counter }}</li> + </ul> + </div> </li> {{/each}} @@ -65,9 +70,6 @@ script( </div> <div class="actions"> - <div class="app-dependencies update hidden"> - <p><?php p($l->t('This app has an update available.')); ?></p> - </div> <div class="warning hidden"></div> <input class="update hidden" type="submit" value="<?php p($l->t('Update to %s', array('{{update}}'))); ?>" data-appid="{{id}}" /> {{#if canUnInstall}} @@ -206,7 +208,7 @@ script( </svg> <div id="apps-list"></div> <div id="apps-list-empty" class="hidden emptycontent emptycontent-search"> - <div class="icon-search"></div> + <div id="app-list-empty-icon" class="icon-search"></div> <h2><?php p($l->t('No apps found for your version')) ?></h2> </div> </div> |