您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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