You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
651 B

  1. <?php
  2. use yii\bootstrap4\Html;
  3. use yii\bootstrap4\ActiveForm;
  4. use kartik\tabs\TabsX;
  5. /* @var $this yii\web\View */
  6. /* @var $model backend\modules\shop\models\ars\ExpressTemplate */
  7. $this->title = '编辑运费模板: ' . $model->name;
  8. $this->params['breadcrumbs'][] = ['label' => '运费模板', 'url' => ['index']];
  9. $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
  10. $this->params['breadcrumbs'][] = 'Update ';
  11. Yii::$app->params['bsVersion'] = '4.x';
  12. ?>
  13. <div class="express-template-update">
  14. <?= $this->render('_form', [
  15. 'model' => $model,
  16. 'isCreate' => false
  17. ]) ?>
  18. </div>