Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

22 Zeilen
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>