35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<div id="container-floating">
|
|
<div class="nd1 nds" data-toggle="tooltip" data-placement="left" title="Обновить" ng-click="update()" style="background-color: #d3a411"
|
|
onmouseenter="$(this).tooltip('show')">
|
|
<i class="material-icons"></i>
|
|
</div>
|
|
|
|
<div id="floating-button" data-toggle="tooltip" data-placement="left" title="Действия" onmouseenter="$(this).tooltip('show')">
|
|
<p class="plus">
|
|
<i class="material-icons"></i>
|
|
</p>
|
|
<p class="edit">
|
|
<i class="material-icons"></i>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="padding">
|
|
<div class="box">
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered m-a-0">
|
|
<thead>
|
|
<th style="width: 20%">#</th>
|
|
<th style="width: 80%">Имя</th>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr ng-repeat="user in users">
|
|
<td>{{ user.id }}</td>
|
|
<td>{{ user.name }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div> |