@hicoder/angular-cli
Version:
Angular UI componenets and service generator. It works with the mean-rest-express package to generate the end to end web application. The input to this generator is the Mongoose schema defined for the express application. mean-rest-express exposes the Res
18 lines (17 loc) • 734 B
HTML
<div class="detail" *ngIf="detail">
<div *ngIf="!options['disableActionButtons']"><%- include('../../../schema-detail.d.actions.html') %></div>
<div class="card text-left transparent-border " [ngStyle]="style['card']">
<div class="grid-fields">
<div class="card-body" [ngStyle]="style['card-body']"><%_{
let view='detail';
let field = detailView[0]; let fn = field.fieldName; let ft = field.type;
let fieldObj = {field, fn, ft, ref_link: true,};%>
<div>
<%- include(`/ui/${uiFramework}/${uiDesign}/schema-display.field-wrap.html`, fieldObj); %>
</div><%_ }%>
</div>
</div>
</div>
<%- include('../../../schema-detail.d.pipeline.html') %>
<%- include('../../../schema-detail.d.ref.html') %>
</div>