Skip to content

Commit

Permalink
Changed design
Browse files Browse the repository at this point in the history
  • Loading branch information
tafid committed Nov 24, 2016
1 parent 7eb572b commit 095e80d
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/views/domain/_bulkSetContacts.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'visibleCount' => count($models),
'formatter' => function ($model) use (&$unchangeableZones) {
if (!$model->isContactChangeable()) {
$unchangeableZones[] = Html::tag('b', $model->domain);
$unchangeableZones[] = $model->domain;
}
return $model->domain;
},
Expand All @@ -35,13 +35,12 @@
</div>

<?php if (!empty($unchangeableZones)) : ?>
<div class="row">
<div class="col-md-12">
<div class="alert alert-warning" role="alert">
<?= Yii::t('hipanel:domain', 'Selected domains contain zones which can not be changed contact details:') ?>
<br>
<?= implode(', ', $unchangeableZones) ?>
</div>
<div class="panel panel-warning">
<div class="panel-heading">
<?= Yii::t('hipanel:domain', 'Selected domains contain zones which can not be changed contact details:') ?>
</div>
<div class="panel-body">
<?= implode(', ', $unchangeableZones) ?>
</div>
</div>
<?php endif; ?>
Expand Down

0 comments on commit 095e80d

Please sign in to comment.