2
0
Fork 0
tcrud/lib/www_views/node-ff-tcrud/angular/thtml/crud/edit.ejs
2017-06-10 16:53:29 +02:00

13 lines
478 B
Plaintext

<h2> Edit <%= tview.tname %></h2>
<div class="col-lg-8">
<form role="form">
<% tview.tedit.tfields.forEach(function (fieldKey) { %>
<div class="form-group">
<label for="<%= tview.tmeta.tfields[fieldKey].tid %>"><%= tview.tmeta.tfields[fieldKey].tname %></label>
<input ng-model="data.<%= tview.tmeta.tfields[fieldKey].tid %>" name="<%= tview.tmeta.tfields[fieldKey].tid %>" class="topcoat-text-input"></input>
</div>
<% }) %>
</form>
<div class="col-lg-4"></div>