| Current Path : /var/www/html/brspace/backend/modules/moduleRepository/views/solution-version/ |
| Current File : /var/www/html/brspace/backend/modules/moduleRepository/views/solution-version/_form.php |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model backend\modules\moduleRepository\models\SolutionVersion */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="solution-version-form">
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'module_id')->textInput() ?>
<?= $form->field($model, 'module_version')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'module_remarks')->textarea(['rows' => 6]) ?>
<?= $form->field($model, 'module_url')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'created_at')->textInput() ?>
<?= $form->field($model, 'created_by')->textInput() ?>
<?= $form->field($model, 'updated_at')->textInput() ?>
<?= $form->field($model, 'updated_by')->textInput() ?>
<div class="form-group">
<?= Html::submitButton(Yii::t('app', 'Save'), ['class' => 'btn btn-success']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>