Show the create a new user backend link as button

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-30 11:47:26 +02:00
parent bad0d3cdc4
commit a17375f7fe
1 changed files with 12 additions and 7 deletions

View File

@ -1,11 +1,16 @@
<div class="controls"> <div class="controls">
<?= $tabs; ?> <?= $tabs ?>
</div> </div>
<div class="content" data-base-target="_next"> <div class="content" data-base-target="_next">
<a href="<?= $this->href('config/createuserbackend'); ?>"> <?= $this->qlink(
<?= $this->icon('plus'); ?><?= $this->translate('Create A New User Backend'); ?> $this->translate('Create A New User Backend') ,
</a> 'config/createuserbackend',
<div id="authentication-reorder-form"> null,
<?= $form; ?> array(
</div> 'class' => 'button action-link',
'icon' => 'plus',
'title' => $this->translate('Create a new user backend')
)
) ?>
<?= $form ?>
</div> </div>