-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathbase-edit.html
More file actions
27 lines (27 loc) · 1.13 KB
/
base-edit.html
File metadata and controls
27 lines (27 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div ng-controller="BaseCtrl">
<error-display></error-display>
<div ng-hide="phase == 'ready' && !showLoading" class="loading">Loading…</div>
<div ng-hide="!showSpinner" class="spinner">Just a second…</div>
<div ng-class="css('rowFluid')" class="page-header edit-header">
<div class="header-lhs col-sm-8 span8">
<h1 id="header-text">{{modelNameDisplay}} :
<span id="header-data-desc">
<span ng-show="!!editFormHeader" >{{ editFormHeader() }}</span>
<span ng-hide="!!editFormHeader" ng-repeat="field in listSchema" ng-bind-html="getListData(record, field.name) + ' '"></span>
</span>
</h1>
</div>
<div class="header-rhs col-sm-2 span2">
<div form-buttons></div>
</div>
</div>
<div class="container-fluid page-body edit-body">
<form-input name="baseForm" schema="baseSchema()" formstyle="compact"></form-input>
</div>
<!-- <pre>-->
<!--Record-->
<!--{{ record | json }}-->
<!--formSchema-->
<!--{{ formSchema | json }}-->
<!-- </pre>-->
</div>