item history now shows descriptions acction changed by and date order or collumns
This commit is contained in:
parent
e11e0be029
commit
32cd96b443
|
@ -3,20 +3,20 @@
|
||||||
<vn-vertical pad-large>
|
<vn-vertical pad-large>
|
||||||
<vn-title vn-one margin-large-bottom>Item history</vn-title>
|
<vn-title vn-one margin-large-bottom>Item history</vn-title>
|
||||||
<vn-grid-header on-order="$ctrl.onOrder(field, order)">
|
<vn-grid-header on-order="$ctrl.onOrder(field, order)">
|
||||||
<vn-column-header vn-one pad-medium-h field="userFk" text="Changed by"></vn-column-header>
|
|
||||||
<vn-column-header vn-one pad-medium-h field="action" text="Action"></vn-column-header>
|
|
||||||
<vn-column-header vn-one pad-medium-h field="creationDate" text="Date" default-order="ASC"></vn-column-header>
|
|
||||||
<vn-column-header vn-two pad-medium-h field="description" text="Description"></vn-column-header>
|
<vn-column-header vn-two pad-medium-h field="description" text="Description"></vn-column-header>
|
||||||
|
<vn-column-header vn-one pad-medium-h field="action" text="Action"></vn-column-header>
|
||||||
|
<vn-column-header vn-one pad-medium-h field="userFk" text="Changed by"></vn-column-header>
|
||||||
|
<vn-column-header vn-one pad-medium-h field="creationDate" text="Date" default-order="ASC"></vn-column-header>
|
||||||
</vn-grid-header>
|
</vn-grid-header>
|
||||||
<vn-one class="list list-content">
|
<vn-one class="list list-content">
|
||||||
<vn-horizontal
|
<vn-horizontal
|
||||||
class="list list-element text-center"
|
class="list list-element text-center"
|
||||||
pad-small-bottom
|
pad-small-bottom
|
||||||
ng-repeat="itemLog in index.model.instances track by itemLog.id">
|
ng-repeat="itemLog in index.model.instances track by itemLog.id">
|
||||||
<vn-one pad-medium-h>{{::itemLog.user.name}}</vn-one>
|
|
||||||
<vn-one pad-medium-h>{{::itemLog.action}}</vn-one>
|
|
||||||
<vn-one pad-medium-h>{{::itemLog.creationDate | date:'dd/MM/yyyy HH:mm'}}</vn-one>
|
|
||||||
<vn-two pad-medium-h>{{::itemLog.description}}</vn-two>
|
<vn-two pad-medium-h>{{::itemLog.description}}</vn-two>
|
||||||
|
<vn-one pad-medium-h>{{::itemLog.action}}</vn-one>
|
||||||
|
<vn-one pad-medium-h>{{::itemLog.user.name}}</vn-one>
|
||||||
|
<vn-one pad-medium-h>{{::itemLog.creationDate | date:'dd/MM/yyyy HH:mm'}}</vn-one>
|
||||||
</vn-horizontal>
|
</vn-horizontal>
|
||||||
</vn-one>
|
</vn-one>
|
||||||
<vn-horizontal vn-one class="list list-footer text-center">
|
<vn-horizontal vn-one class="list list-footer text-center">
|
||||||
|
|
Loading…
Reference in New Issue