dizquetv/web/public/templates/cache-settings.html
Rafael Vieira Santos c97ff8f24e
File cache system (#242)
* Create a File Cache Service and Channels M3U Cache

* Create a Cache Image Service for external images

* Singleton, db configurations and repairs
2021-01-24 11:56:36 -04:00

15 lines
577 B
HTML

<div>
<h5>Cache</h5>
<div class="options col-sm-4">
<div class="option row" ng-repeat="setting in settings track by setting.key">
<div class="option__title col-sm-6">{{setting.title}}</div>
<div class="option__action col-sm-6">
<button class="pull-right btn btn-sm" ng-class="[{'btn-danger': setting.value, 'btn-success': !setting.value}]" ng-click="updateSetting(setting)">
{{(setting.value) ? 'Disable' : 'Enable'}}
</button>
</div>
</div>
</div>
</div>