@@ -168,6 +168,9 @@ $this->title = 'Tableau de bord'; | |||
</td> | |||
<td> | |||
<?= $order->getStrUser(); ?><br /> | |||
<?php if(strlen($order->comment)): ?> | |||
<div class="comment"><span class="glyphicon glyphicon-comment"></span> <?= nl2br(Html::encode($order->comment)) ; ?></div> | |||
<?php endif; ?> | |||
</td> | |||
<td><?= $order->getCartSummary() ; ?></td> | |||
<td><?= $order->getPointSaleSummary() ; ?></td> |
@@ -431,6 +431,18 @@ a.btn, button.btn { | |||
.date { | |||
text-align: center ; | |||
} | |||
.comment { | |||
position: relative ; | |||
margin-top: 4px ; | |||
padding-left: 20px ; | |||
font-style: italic ; | |||
.glyphicon { | |||
position: absolute ; | |||
left: 0px ; | |||
} | |||
} | |||
} | |||
} | |||