create.php 363 B

123456789101112131415161718192021
  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'][] = $this->title;
  11. ?>
  12. <div class="article-create">
  13. <?= $this->render('_form', [
  14. 'model' => $model,
  15. 'moduleModel' => $moduleModel
  16. ]) ?>
  17. </div>