From: Steve Sutton Date: Fri, 18 May 2018 20:50:47 +0000 (-0400) Subject: format date for date_submitted. X-Git-Tag: v1.0.0^2~6 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=3294ab7bd7f6ed150fba1cb41f09750df6a99790;p=WP-Plugins%2Fglm-member-db-registrations.git format date for date_submitted. Was outputting the time which is not stored in the db field. --- diff --git a/views/admin/registrations/requestDashboard.html b/views/admin/registrations/requestDashboard.html index 758eb99..4a8f847 100644 --- a/views/admin/registrations/requestDashboard.html +++ b/views/admin/registrations/requestDashboard.html @@ -11,14 +11,14 @@

This request has been DELETED!

* All {$terms.reg_term_attendee_plur} included in this request have been removed along with all associated data.

* All {$terms.reg_term_attendee} availability inventory that was consumed by this request has been made available again.

-

* This deleted request cannot be restored.

+

* This deleted request cannot be restored.

-{else} +{else} Delete Request -{/if} - +{/if} +

Request

- +
@@ -71,7 +71,7 @@ {$cart.request.bill_city}, {$cart.request.bill_state} {$cart.request.bill_zip} {$cart.request.bill_country}
- +
@@ -81,7 +81,7 @@

Submitted:

- {$cart.request.date_submitted.datetime} + {$cart.request.date_submitted.datetime|date_format:"%D"}
@@ -128,30 +128,30 @@

Notes:

- {if $cart.request.notes != ''} + {if $cart.request.notes != ''}
{$cart.request.notes}
{else} (no notes entered) - {/if} + {/if}
- +
- +

Cart Contents When Submitted

- NOTE: The summary below is a historical record (exact copy) of the checkout summary at the time the cart was submitted. + NOTE: The summary below is a historical record (exact copy) of the checkout summary at the time the cart was submitted. Editing {$terms.reg_term_attendee_plur} and other updates will not change the information below.

- +
{if $cart.request.summary} @@ -165,9 +165,9 @@ {/if}
-
- - + + +

You are deleting the registration request shown on this page!

Clicking "Delete This Request" below will permanently remove this request and any information associated with it.

@@ -188,8 +188,8 @@

To delete this request as described above, click "Delete This Request" below.

- - + + @@ -198,7 +198,7 @@ jQuery(document).ready(function($) { var dialogWidth = $("#glm-admin-member-registrations-request-overview").width(); - + // Summary Dialog Box $("#viewSummaryDialog").dialog({ autoOpen: false, @@ -231,7 +231,7 @@ $('#deleteRegSubmissionDialog').dialog('open'); return false; }); - + });