Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

22 lines
481B

  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model app\models\Produit */
  5. $this->title = 'Ajouter une commande automatique';
  6. $this->params['breadcrumbs'][] = ['label' => 'Commandes automatiques', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = 'Ajouter';
  8. ?>
  9. <div class="commandeauto-create">
  10. <h1><?= Html::encode($this->title) ?></h1>
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. 'produits' => $produits
  14. ]) ?>
  15. </div>