mirror of
https://github.com/valitydev/redash.git
synced 2024-11-08 01:48:54 +00:00
20 lines
1013 B
HTML
20 lines
1013 B
HTML
<div class="container">
|
|
<h2>Dashboards</h2>
|
|
<div class="list-group" ng-repeat="(name, dashboards) in allDashboards">
|
|
<div class="list-group-item active">
|
|
{{name}}
|
|
<button type="button" class="btn btn-sm btn-link" data-toggle="modal" href="#new_dashboard_dialog" tooltip="New Dashboard"><span class="glyphicon glyphicon-plus-sign"></span></button>
|
|
</div>
|
|
<div class="list-group-item" ng-repeat="dashboard in dashboards" >
|
|
<button type="button" class="close delete-button" aria-hidden="true" ng-show="dashboard.canEdit()" ng-click="archiveDashboard(dashboard)" tooltip="Delete Dashboard">×</button>
|
|
<a ng-href="/dashboard/{{dashboard.slug}}">{{dashboard.name}}</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div ng-show="currentUser.is_admin">
|
|
<div class="list-group">
|
|
<div class="list-group-item active">Admin</div>
|
|
<a href="/admin/status" class="list-group-item">Status</a>
|
|
</div>
|
|
</div>
|
|
</div> |