Files
admin-php-module/web/views/modules/index.html
miroman-afk 5497b611ef v.2.12
-Add new setting "Delete shift"
-Move "Shift" frontend to V1 module
2022-02-01 01:55:15 +03:00

34 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>