blob: b64608a0598fb104893ded6fe2a8376d0e175662 [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<div id="dashboard" class="bs-component" >
<div class="container-fluid">
<div class="row col-lg-12" style="margin-top: 15px;">
<div class="form-group">
<span>
<label>Organization: </label>
<select ng-disabled="orgSelectDisabled" class="form-control" style="padding: 4px 6px;height: 30px;width: 230px;background-color: #d1d3d2;display: inline-block;margin-left: 10px;" ng-model="selectedOrgIndex" ng-change="changeOrg()">
<option value="">-- All --</option>
<option ng-repeat="opt in originalOrgs" value="{{$index}}" ng-selected="selectedOrgIndex==$index">{{opt.name}}</option>
</select>
</span>
<span style="padding-left:30px;">
<label>Data Asset: </label>
<select class="form-control" style="padding: 4px 6px;height: 30px;width: 230px;background-color: #d1d3d2;display: inline-block;margin-left: 10px;" ng-model="selectedAssetIndex" ng-change="changeAsset()">
<option value="">-- All --</option>
<option ng-repeat="opt in assetOptions" value="{{$index}}">{{opt}}</option>
</select>
</span>
</div>
</div>
<div ng-repeat="outerItems in finalData">
<div class="row" >
<div class="col-sm-12 col-md-12 col-lg-12">
<h4>{{outerItems.name}}</h4>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4 col-xs-12 col-lg-3 chartItem" ng-repeat="items in outerItems.metrics" style="margin-bottom:30px;">
<div class="row-fluid" style="cursor: pointer;">
<div id={{'thumbnail'+$parent.$index+'-'+$index}} ng-click="showBig(items)" class="thumb-chart" style="border: 2px solid;"></div>
<p class="text-right">
<a href ng-click="getSample(items)" style="font-size: 11px;">
<u>Download&nbsp;Sample</u>
</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>