15 lines
683 B
PHP
15 lines
683 B
PHP
<?= $this->extend('layouts/admin') ?>
|
|
<?= $this->section('content') ?>
|
|
<?= $this->include('templates/admin/header'); ?>
|
|
<table class="table table-bordered table-hover table-striped indexTable ">
|
|
<?php foreach ($fields as $field) : ?>
|
|
<tr>
|
|
<td nowrap style="background-color:#e8ebe9; width:10%; text-align:right; padding-right:20px;">
|
|
<?= getFieldLabel_UserSNSHelper($field, $fieldRules) ?>
|
|
</td>
|
|
<td style="text-align:left; padding-left:20px;"><?= getFieldView_UserSNSHelper($field, $entity, $fieldFilters, $fieldFormOptions) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
<?= $this->include('templates/admin/footer'); ?>
|
|
<?= $this->endSection() ?>
|