move logs button into app grid

This commit is contained in:
Johannes Zellner
2020-06-11 15:24:18 +02:00
parent 429f45a09a
commit 4c2c27c686

View File

@@ -47,7 +47,6 @@
<div class="modal-body">
<p ng-show="appInfo.app.manifest.documentationUrl">Please see the <a target="_blank" ng-href="{{appInfo.app.manifest.documentationUrl}}">documentation</a> for helpful information and common topics for this app.</p>
<p>If you need further help, refer to the <a target="_blank" ng-href="{{ appInfo.app.manifest.forumUrl || 'https://forum.cloudron.io' }}">forum section</a>.</p>
<p>The logs can be viewed and downloaded <a ng-href="{{ '/logs.html?appId=' + app.id }}" target="_blank">here</a>.</p>
<h4 ng-show="appInfo.app.manifest.postInstallMessage" style="padding-top: 20px;">First Time Setup</h4>
<div ng-bind-html="appInfo.app.manifest.postInstallMessage | postInstallMessage:appInfo.app | markdown2html"></div>
@@ -133,8 +132,9 @@
</div>
<div class="grid-item-actions" ng-show="user.isAtLeastAdmin">
<a ng-href="" class="hand" ng-click="appInfo.show(app)"><i class="fas fa-info-circle"></i></a>
<a ng-href="#/app/{{ app.id}}/display"><i class="fas fa-cogs"></i></a>
<a ng-href="" class="hand" ng-click="appInfo.show(app)"><i class="fas fa-info-circle"></i></a>
<a ng-href="{{ '/logs.html?appId=' + app.id }}" target="_blank"><i class="fas fa-align-left"></i></a>
</div>
<!-- we check the version here because the box updater does not know when an app gets updated -->