update.php 464 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Author: NODELOG
  4. * Date: 2015/12/3
  5. * Time: 10:57.
  6. */
  7. /* @var $this yii\web\View */
  8. /* @var $model frontend\models\Article */
  9. $this->title = '我的发布';
  10. $this->params['breadcrumbs'][] = ['label' => $this->title, 'url' => ['/user/article-list']];
  11. $this->params['breadcrumbs'][] = $model->title;
  12. ?>
  13. <div class="article-update">
  14. <?= $this->render('_form', [
  15. 'model' => $model,
  16. 'moduleModel' => $moduleModel
  17. ]) ?>
  18. </div>