/**
  * @inheritdoc
  */
 public function getFooter()
 {
     $deleteButton = $this->model->isNewItem() ? '' : Html::a(Icon::show('trash-o') . ' ' . Yii::t('dotplant.currencies', 'Delete'), [$this->controller->id . '/delete', 'id' => $this->model->name, 'returnUrl' => $this->returnUrl], ['class' => 'btn btn-danger']);
     return Html::tag('div', $deleteButton . Html::a(Yii::t('dotplant.currencies', 'Back'), $this->returnUrl, ['class' => 'btn btn-primary']) . Html::submitButton(Icon::show('floppy-o') . ' ' . Yii::t('dotplant.currencies', 'Save'), ['class' => 'btn btn-primary']), ['class' => 'btn-group pull-right', 'role' => 'group', 'aria-label' => 'Edit buttons']);
 }