WEB. Improved Lets Encrypt interface

This commit is contained in:
Dmitry Naumov-Socolov 2016-10-27 07:17:03 -04:00
commit 0e18fc669a
36 changed files with 122 additions and 13 deletions

View file

@ -232,7 +232,13 @@ sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DI
<div class="l-unit__stat-cols clearfix">
<div class="l-unit__stat-col l-unit__stat-col--left"><?=__('SSL Support')?>:</div>
<div class="l-unit__stat-col l-unit__stat-col--right">
<b><?=__($data[$key]['SSL'])?></b>
<b>
<? if(empty($data[$key]['LETSENCRYPT'])){
echo __($data[$key]['SSL']);
} else {
echo __('Lets Encrypt');
}?>
</b>
</div>
</div>
<? } ?>