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