<div class="row text-center mb-5">
    <div class="col">
        <h1>Object detail</h1>
    </div>
</div>
<div class="row">
    <table class="table table-striped table-bordered">
        <tr *ngFor="let attribute of getAttributesVisible()">
            <th>{{ attribute.form_label }}</th>
            <td>{{ object[attribute.label] }}</td>
        </tr>
    </table>
</div>