34 lines
1.7 KiB
HTML
34 lines
1.7 KiB
HTML
<div class="padding">
|
||
<div class="col-md-6">
|
||
<div class="row">
|
||
<h4 class="text-muted" style="margin-bottom: 40px;" ng-if="modules.length > 0">Доступные обновления модулей</h4>
|
||
<h4 class="text-muted" style="margin-bottom: 40px;" ng-if="modules.length === 0">Нет доступных обновлений</h4>
|
||
|
||
<div ng-if="modules.length > 0">
|
||
<div class="box">
|
||
<div class="table-responsive">
|
||
<table class="table">
|
||
<thead>
|
||
<tr>
|
||
<th><input type="checkbox" ng-click="toggleAll()" ng-model="isAllSelected"> Выбрать все</th>
|
||
</tr>
|
||
</thead>
|
||
|
||
<tbody>
|
||
<tr ng-repeat="module in modules">
|
||
<td>
|
||
<input type="checkbox" ng-model="module.selected" ng-change="optionToggled()">
|
||
<strong>{{ module.name }}</strong>
|
||
<br> У вас установлена версия {{ module.version }}.
|
||
<strong>Обновите до {{ module.l_version }}</strong>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
<button class="btn success pull-right" id="btn-download" ng-click="updateModules()">Обновить модули</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div> |