bosun.org@v0.0.0-20210513094433-e25bc3e69a1f/annotate/web/static/partials/list.html (about)

     1  <div class="row" ng-show="error">
     2  	<div class="col-lg-12">
     3  		<div class="alert alert-danger" ng-bind="error"></div>
     4  	</div>
     5  </div>
     6  
     7  <div class="row">
     8  	<form class="form">
     9  		<div class="col-sm-3 form-group">
    10  			<label class="control-label" ng-click="switch()">Start</label>
    11  			<input type="text" class="form-control" ng-model="StartDate" ng-blur="get()">
    12  		</div>
    13  		<div class="col-sm-3 from-group">
    14  			<label class="control-label" ng-click="switch()">End</label>
    15  			<input type="text" class="form-control" ng-model="EndDate" ng-blur="get()">
    16  		</div>
    17  	</form>
    18  </div>
    19  
    20  <div class="row">
    21  	<div class="col-sm-12">
    22  		<table class="table">
    23  			<thead>
    24  				<tr>
    25  					<th>Id</th>
    26  					<th>StartDate</th>
    27  					<th>EndDate</th>
    28  					<th>Source</th>
    29  					<th>Host</th>
    30  					<th>CreationUser</th>
    31  					<th>Owner</th>
    32  					<th>Category</th>
    33  					<th>Url</th>
    34  					<th>Message</th>
    35  				</tr>
    36  			</thead>
    37  			<tbody>
    38  				<tr ng-repeat="a in annotations">
    39  					<td>
    40  						<a ng-href="{{'/?guid=' + a.Id}}">Edit </a>
    41  						<a ng-click="delete(a.Id)">Delete </a>
    42  					</td>
    43  					<td ng-bind="a.StartDate" ng-style="active(a) && {'font-weight': 'bold'}"></td>
    44  					<td ng-bind="a.EndDate" ng-style="active(a) && {'font-weight': 'bold'}"></td>
    45  					<td ng-bind="a.Source"></td>
    46  					<td ng-bind="a.Host"></td>
    47  					<td ng-bind="a.CreationUser"></td>
    48  					<td ng-bind="a.Owner"></td>
    49  					<td ng-bind="a.Category"></td>
    50  					<td><a ng-show="a.Url" ng-href="{{a.Url}}">{{url(a.Url)}}</a></td>
    51  					<td ng-bind="a.Message"></td>
    52  				</tr>
    53  			</tbody>
    54  		</table>
    55  	</div>
    56  </div>