|
- <?php
-
-
-
- use yii\helpers\Html ;
-
- ?>
-
- <div class="communicate-instructions<?php if(isset($pdf) && $pdf): ?> communicate-instructions-pdf<?php endif; ?><?php if(!isset($pdf)): ?> communicate-instructions-inset<?php endif; ?>">
- <div class="header">
- <div class="logo">
- <img src="../img/laboulange4.png" alt="Logo" />
- </div>
- <h1>distrib</h1>
- <h2>Plateforme de gestion de commandes</h2>
- </div>
- <div class="clr"></div>
-
- <h3>Pour réserver vos produits en ligne</h3>
-
- <ol>
- <li>Inscrivez-vous sur <strong>www.opendistrib.net</strong> en choisisant le producteur <strong><?= Html::encode($producer->name); ?></strong></li>
- <?php if(strlen($producer->code)): ?>
- <li>Utilisez le code : <span class="code"><strong><?= Html::encode($producer->code) ?></strong> <?php if(!isset($pdf)): echo Html::a('<span class="glyphicon glyphicon-pencil"></span>', ['producer/update'], ['class'=> 'btn btn-default btn-xs']); endif; ?></span></li>
- <?php endif; ?>
- <li>Passez votre commande</li>
- </ol>
- </div>
|