Skip to content
Snippets Groups Projects
object-display.component.html 373 B
Newer Older
  • Learn to ignore specific revisions
  • François Agneray's avatar
    François Agneray committed
    <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>