diff --git a/frontend/app/views/components/alert/similar-case-list.component.html b/frontend/app/views/components/alert/similar-case-list.component.html index e002795e15..7a28cb291e 100644 --- a/frontend/app/views/components/alert/similar-case-list.component.html +++ b/frontend/app/views/components/alert/similar-case-list.component.html @@ -118,7 +118,7 @@
- (Closed at {{item.case.endDate | showDate}} as {{$cmp.CaseResolutionStatus[item.case.resolutionStatus]}}) + (Closed at {{item.case.endDate | shortDate}} as {{$cmp.CaseResolutionStatus[item.case.resolutionStatus]}})
@@ -137,7 +137,7 @@
- {{item.case._createdAt | shortDate}} + {{item.case._createdAt | shortDate}}
diff --git a/frontend/app/views/components/org/case-template/case-templates.html b/frontend/app/views/components/org/case-template/case-templates.html index 82d78de5c9..7df3821857 100644 --- a/frontend/app/views/components/org/case-template/case-templates.html +++ b/frontend/app/views/components/org/case-template/case-templates.html @@ -110,7 +110,7 @@

- {{template._createdAt | shortDate}} + {{template._createdAt | shortDate}}
diff --git a/frontend/app/views/components/org/config.list.html b/frontend/app/views/components/org/config.list.html index a6ffcc7837..6ec88724a1 100644 --- a/frontend/app/views/components/org/config.list.html +++ b/frontend/app/views/components/org/config.list.html @@ -38,7 +38,7 @@
- Result: {{$ctrl.date | amDateFormat:$ctrl.configs['defaultDateFormat']}} + Result preview: {{$ctrl.date | amDateFormat:$ctrl.configs['defaultDateFormat']}}
@@ -46,8 +46,13 @@
  • YYYY-MM-DD HH:mm results in {{$ctrl.date | amDateFormat:'YYYY-MM-DD HH:mm'}}
  • DD/MM/YYYY HH:mm results in {{$ctrl.date | amDateFormat:'DD/MM/YYYY HH:mm'}}
  • DD.MM.YY HH:mm:ss results in {{$ctrl.date | amDateFormat:'DD.MM.YY HH:mm:ss'}}
  • -
  • MM-DD-YYYY HH:mm:ss results in {{$ctrl.date | amDateFormat:'MM-DD-YYYY HH:mm:ss'}}
  • +
  • MM-DD-YYYY HH:mm:ssZ results in {{$ctrl.date | amDateFormat:'MM-DD-YYYY HH:mm:ssZ'}}
  • +
  • ddd, MMM Do, YYYY H:mm Z results in {{$ctrl.date | amDateFormat:'ddd, MMM Do, YYYY H:mm Z'}}
  • +
    + For more details about the format click here +
    +

    diff --git a/frontend/app/views/directives/search/alert.html b/frontend/app/views/directives/search/alert.html index 12f7240a89..b003bb28c0 100644 --- a/frontend/app/views/directives/search/alert.html +++ b/frontend/app/views/directives/search/alert.html @@ -12,7 +12,7 @@
    Date: - {{value.date | showDate}} + {{value.date | shortDate}} Type: @@ -29,7 +29,7 @@ Attributes: {{value.artifacts.length}} - +
    Tags: diff --git a/frontend/app/views/directives/search/audit.html b/frontend/app/views/directives/search/audit.html index 98e382ddf4..a329490db0 100644 --- a/frontend/app/views/directives/search/audit.html +++ b/frontend/app/views/directives/search/audit.html @@ -3,7 +3,7 @@ by - Occurred on + Occurred on
    @@ -23,17 +23,17 @@
    - + - + ( Closed on - {{value.stats.endDate | showDate}} + {{value.stats.endDate | shortDate}} as {{value.stats.resolutionStatus}}) @@ -80,7 +80,7 @@
    Date: - {{value.stats.date | showDate}} + {{value.stats.date | shortDate}} Type: diff --git a/frontend/app/views/directives/search/case.html b/frontend/app/views/directives/search/case.html index 91be942bd0..330c363d6f 100644 --- a/frontend/app/views/directives/search/case.html +++ b/frontend/app/views/directives/search/case.html @@ -8,13 +8,13 @@ - + ( Closed on - {{value.endDate | showDate}} + {{value.endDate | shortDate}} as {{value.resolutionStatus}}) diff --git a/frontend/app/views/directives/search/observable-job.html b/frontend/app/views/directives/search/observable-job.html index bb04314d4f..42483fc035 100644 --- a/frontend/app/views/directives/search/observable-job.html +++ b/frontend/app/views/directives/search/observable-job.html @@ -8,13 +8,13 @@ - Started on + Started on ( Finished on - {{value.endDate | showDate}} + {{value.endDate | shortDate}} as {{value.status}}) diff --git a/frontend/app/views/directives/search/observable.html b/frontend/app/views/directives/search/observable.html index 6e59010004..f86a2770eb 100644 --- a/frontend/app/views/directives/search/observable.html +++ b/frontend/app/views/directives/search/observable.html @@ -8,11 +8,11 @@
    - + - +
    Tags: diff --git a/frontend/app/views/directives/search/task-log.html b/frontend/app/views/directives/search/task-log.html index c243707b60..0b45d8ea48 100644 --- a/frontend/app/views/directives/search/task-log.html +++ b/frontend/app/views/directives/search/task-log.html @@ -5,7 +5,7 @@
    - + diff --git a/frontend/app/views/directives/search/task.html b/frontend/app/views/directives/search/task.html index 6f6336764e..a74ac2d9c7 100644 --- a/frontend/app/views/directives/search/task.html +++ b/frontend/app/views/directives/search/task.html @@ -4,11 +4,11 @@
    - + - +
    diff --git a/frontend/app/views/partials/admin/organisation/details.html b/frontend/app/views/partials/admin/organisation/details.html index bd67c22f75..8a821a29c6 100644 --- a/frontend/app/views/partials/admin/organisation/details.html +++ b/frontend/app/views/partials/admin/organisation/details.html @@ -27,7 +27,7 @@

    - {{$vm.org.createdAt | showDate}} + {{$vm.org.createdAt | shortDate}} diff --git a/frontend/app/views/partials/admin/organisation/list.html b/frontend/app/views/partials/admin/organisation/list.html index 9f032078f8..15c94bebe5 100644 --- a/frontend/app/views/partials/admin/organisation/list.html +++ b/frontend/app/views/partials/admin/organisation/list.html @@ -41,7 +41,7 @@

    List of organisations

    - {{org.createdAt | showDate}} + {{org.createdAt | shortDate}} diff --git a/frontend/app/views/partials/admin/organisation/list/link.modal.html b/frontend/app/views/partials/admin/organisation/list/link.modal.html index 1c1efcb716..2640cdaf88 100644 --- a/frontend/app/views/partials/admin/organisation/list/link.modal.html +++ b/frontend/app/views/partials/admin/organisation/list/link.modal.html @@ -34,7 +34,7 @@ {{org.name}} - {{org.createdAt | showDate}} + {{org.createdAt | shortDate}} diff --git a/frontend/app/views/partials/alert/event.dialog.html b/frontend/app/views/partials/alert/event.dialog.html index 5d7e42b991..d5e950e1f9 100644 --- a/frontend/app/views/partials/alert/event.dialog.html +++ b/frontend/app/views/partials/alert/event.dialog.html @@ -24,7 +24,7 @@

    Date: - {{dialog.event.date | showDate}} + {{dialog.event.date | shortDate}} Type: diff --git a/frontend/app/views/partials/alert/event.similarity.html b/frontend/app/views/partials/alert/event.similarity.html index e12fc07084..eb3fb3163a 100644 --- a/frontend/app/views/partials/alert/event.similarity.html +++ b/frontend/app/views/partials/alert/event.similarity.html @@ -35,7 +35,7 @@

    - (Closed at {{item.endDate | showDate}} as {{dialog.CaseResolutionStatus[item.resolutionStatus]}}) + (Closed at {{item.endDate | shortDate}} as {{dialog.CaseResolutionStatus[item.resolutionStatus]}})
    @@ -53,7 +53,7 @@
    - {{item.startDate | shortDate}} + {{item.startDate | shortDate}}
    diff --git a/frontend/app/views/partials/case/case.close.html b/frontend/app/views/partials/case/case.close.html index 1abb66a9c8..7c7cfb4706 100644 --- a/frontend/app/views/partials/case/case.close.html +++ b/frontend/app/views/partials/case/case.close.html @@ -24,7 +24,7 @@ {{task.title}} -
    {{task.startDate | showDate}} +
    {{task.startDate | shortDate}} @@ -32,7 +32,7 @@ {{task.title}} -
    {{task.startDate | showDate}} +
    {{task.startDate | shortDate}} diff --git a/frontend/app/views/partials/case/case.details.html b/frontend/app/views/partials/case/case.details.html index c1f873355e..cc5edb5c74 100644 --- a/frontend/app/views/partials/case/case.details.html +++ b/frontend/app/views/partials/case/case.details.html @@ -64,7 +64,7 @@

    Basic Information

    - {{caze.startDate | showDate}} + {{caze.startDate | shortDate}}
    @@ -84,7 +84,7 @@

    Basic Information

    - {{caze.endDate | showDate}} + {{caze.endDate | shortDate}}
    diff --git a/frontend/app/views/partials/case/case.links.html b/frontend/app/views/partials/case/case.links.html index 040d311b71..ff419bcfa3 100644 --- a/frontend/app/views/partials/case/case.links.html +++ b/frontend/app/views/partials/case/case.links.html @@ -65,7 +65,7 @@
    - (Closed at {{item.endDate | showDate}} as {{CaseResolutionStatus[item.resolutionStatus]}}) + (Closed at {{item.endDate | shortDate}} as {{CaseResolutionStatus[item.resolutionStatus]}})
    @@ -83,7 +83,7 @@
    - {{item.startDate | shortDate}}
    + {{item.startDate | shortDate}}
    diff --git a/frontend/app/views/partials/case/case.list.html b/frontend/app/views/partials/case/case.list.html index 1516473611..01967b084f 100644 --- a/frontend/app/views/partials/case/case.list.html +++ b/frontend/app/views/partials/case/case.list.html @@ -79,7 +79,7 @@

    List of cases ({{$vm.list.total || 0}} of {{$vm.caseCount}
    - (Closed at {{currentCase.endDate | showDate}} as {{$vm.CaseResolutionStatus[currentCase.resolutionStatus]}}) + (Closed at {{currentCase.endDate | shortDate}} as {{$vm.CaseResolutionStatus[currentCase.resolutionStatus]}})
    @@ -132,7 +132,7 @@

    List of cases ({{$vm.list.total || 0}} of {{$vm.caseCount}
    - {{currentCase.startDate | shortDate}} + {{currentCase.startDate | shortDate}}
    diff --git a/frontend/app/views/partials/case/case.merge.html b/frontend/app/views/partials/case/case.merge.html index 14b625697b..c0e678db2b 100644 --- a/frontend/app/views/partials/case/case.merge.html +++ b/frontend/app/views/partials/case/case.merge.html @@ -37,9 +37,9 @@

    {{c.title}}

    - {{c.startDate | showDate}}   + {{c.startDate | shortDate}}   (Closed at - {{c.endDate | showDate}} + {{c.endDate | shortDate}} as {{CaseResolutionStatus[c.resolutionStatus]}}) diff --git a/frontend/app/views/partials/case/details/related.cases.html b/frontend/app/views/partials/case/details/related.cases.html index 89b690e506..272d0c5b1a 100644 --- a/frontend/app/views/partials/case/details/related.cases.html +++ b/frontend/app/views/partials/case/details/related.cases.html @@ -4,7 +4,7 @@

    Related cases

    Newest (Case # {{newestLink.caseId}} - {{newestLink.title}})
    - Created on {{newestLink.startDate | showDate:'YYYY-MM-DD'}} + Created on {{newestLink.startDate | shortDate:'YYYY-MM-DD'}}
    Shares @@ -21,7 +21,7 @@
    Newest (Case # {{ne
    Oldest (Case # {{oldestLink.caseId}} - {{oldestLink.title}})
    - Created on {{oldestLink.startDate | showDate:'YYYY-MM-DD'}} + Created on {{oldestLink.startDate | shortDate:'YYYY-MM-DD'}}
    Shares diff --git a/frontend/app/views/partials/observables/details/analysers.html b/frontend/app/views/partials/observables/details/analysers.html index a07a59b7ab..57b43ef06d 100644 --- a/frontend/app/views/partials/observables/details/analysers.html +++ b/frontend/app/views/partials/observables/details/analysers.html @@ -45,7 +45,7 @@

    - {{(job.endDate || job.startDate) | showDate}} ({{job.cortexId}}) + {{(job.endDate || job.startDate) | shortDate}} ({{job.cortexId}}) @@ -96,7 +96,7 @@

    - Report for {{report.template}} analysis of {{(report.endDate || report.startDate) | showDate}} + Report for {{report.template}} analysis of {{(report.endDate || report.startDate) | shortDate}} {{showRaw ? 'Hide': 'Show'}} Raw Report | diff --git a/frontend/app/views/partials/observables/details/summary.html b/frontend/app/views/partials/observables/details/summary.html index a2bc9b0bf2..6d1c056edb 100644 --- a/frontend/app/views/partials/observables/details/summary.html +++ b/frontend/app/views/partials/observables/details/summary.html @@ -47,7 +47,7 @@

    Date added
    -
    {{artifact.startDate | showDate}}
    +
    {{artifact.startDate | shortDate}}
    diff --git a/frontend/app/views/partials/observables/list/observables.html b/frontend/app/views/partials/observables/list/observables.html index afb5a5607e..e2cb1ffae4 100644 --- a/frontend/app/views/partials/observables/list/observables.html +++ b/frontend/app/views/partials/observables/list/observables.html @@ -95,7 +95,7 @@

    - {{artifact.startDate | shortDate}} + {{artifact.startDate | shortDate}}