20 lines
469 B
PHP
20 lines
469 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use yii\helpers\Html;
|
||
|
|
|
||
|
|
/* @var $this yii\web\View */
|
||
|
|
/* @var $model common\models\MolecularProcedures */
|
||
|
|
|
||
|
|
$this->title = 'Update : ' . $model->charge->name;
|
||
|
|
$this->params['breadcrumbs'][] = ['label' => 'Molecular Procedures', 'url' => ['index']];
|
||
|
|
$this->params['breadcrumbs'][] = ['label' => $model->charge->name, 'url' => ['view', 'id' => $model->id]];
|
||
|
|
$this->params['breadcrumbs'][] = 'Update';
|
||
|
|
?>
|
||
|
|
|
||
|
|
|
||
|
|
<?= $this->render('_form', [
|
||
|
|
'model' => $model,
|
||
|
|
]) ?>
|
||
|
|
|
||
|
|
|