Skip to content

Commit

Permalink
Merge pull request maestrano#316 from alexnoox/fix-orders-dates
Browse files Browse the repository at this point in the history
Remove time from subscriptions start and end dates
  • Loading branch information
alexnoox authored Sep 13, 2017
2 parents 1bbdd17 + 7b21e89 commit d6a00b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/views/provisioning/subscriptions.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ <h2 class="section-title">{{ 'mno_enterprise.templates.dashboard.provisioning.su
<span class="cell-label visible-xs-inline">
{{ 'mno_enterprise.templates.dashboard.provisioning.subscriptions.start_date' | translate }}:
</span>
<span title="{{subscription.start_date | amUtc | amLocal}}">{{subscription.start_date | amCalendar}}</span>
<span title="{{subscription.start_date | amUtc | amDateFormat: 'LL'}}">{{subscription.start_date | amUtc | amDateFormat: 'L'}}</span>
</div>

<div class="cell col-sm-2">
<span class="cell-label visible-xs-inline">
{{ 'mno_enterprise.templates.dashboard.provisioning.subscriptions.end_date' | translate }}:
</span>
<span title="{{subscription.end_date | amUtc | amLocal}}">{{subscription.end_date | amCalendar}}</span>
<span title="{{subscription.end_date | amUtc | amDateFormat: 'LL'}}">{{subscription.end_date | amUtc | amDateFormat: 'L'}}</span>
</div>

<div class="cell col-sm-1">
Expand Down

0 comments on commit d6a00b8

Please sign in to comment.