X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=instancehandler%2Ftemplate%2Finstance_operations_list.html;h=15687178d09ddade7ea0644eb29a2909c5c43e90;hb=refs%2Fchanges%2F81%2F7481%2F1;hp=7e846581752194d2e7e8d86b728eb78bb347dfda;hpb=4908f382154fddb84d72ce8d516229649c01b606;p=osm%2FLW-UI.git diff --git a/instancehandler/template/instance_operations_list.html b/instancehandler/template/instance_operations_list.html index 7e84658..1568717 100644 --- a/instancehandler/template/instance_operations_list.html +++ b/instancehandler/template/instance_operations_list.html @@ -28,7 +28,7 @@ {% block breadcrumb_body %} {{ block.super }}
  • Instances
  • -
  • Operations
  • +
  • History of Operations
  • {% endblock %} {% block content_body %} @@ -40,7 +40,7 @@
    -

    Active operations

    +

    History of operations

    @@ -139,13 +139,13 @@ }, { "render": function (data, type, row) { - return row["startTime"]; + return moment.unix(row['startTime']).format('YYYY-MM-DD hh:mm:ss a') }, "targets": 3 }, { "render": function (data, type, row) { - return row["statusEnteredTime"]; + return moment.unix(row['statusEnteredTime']).format('YYYY-MM-DD hh:mm:ss a') }, "targets": 4 }, @@ -159,9 +159,11 @@ ' \n' + '
    '; }, - "targets": 5 + "targets": 5, + "orderable": false } - ] + ], + "order": [[ 3, "asc" ]] });