For now just add a filemanager button in console section

This commit is contained in:
Johannes Zellner
2020-07-10 16:19:01 +02:00
parent 35dfea03da
commit 46ed0ab49e

View File

@@ -1079,6 +1079,7 @@
<label class="control-label">Console Access</label>
<p>This will open a console connection to the app. The terminal is sandboxed and only provides access to this app container's filesystem.</p>
<a class="btn btn-primary pull-right" ng-href="{{ (app.installationState === 'installed' && (app.health === 'healthy' || app.debugMode)) ? '/terminal.html?id=' + app.id : '' }}" ng-disabled="app.installationState !== 'installed' || (app.health !== 'healthy' && !app.debugMode)" tooltip-class="long" tooltip-enable="app.installationState !== 'installed' || app.health !== 'healthy'" uib-tooltip="App is not running. If app is constantly restarting, Repair it first." target="_blank">Terminal</a>
<a class="btn btn-primary pull-right" ng-href="{{ '/filemanager.html?appId=' + app.id }}" target="_blank">File Manager</a>
<a class="btn btn-primary pull-right" ng-href="{{ '/logs.html?appId=' + app.id }}" target="_blank">Logs</a>
</div>
</div>