From c273e9f1e9b1d135af06a941b787d0fec6c812c5 Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Thu, 16 Nov 2017 16:28:29 -0500 Subject: [PATCH] Work on layout and content for Requests and Accounts admin pages. --- .../registrations/accountsDashboard.html | 27 +++++++++++++------ .../admin/registrations/requestDashboard.html | 21 +++++++++++++-- 2 files changed, 38 insertions(+), 10 deletions(-) diff --git a/views/admin/registrations/accountsDashboard.html b/views/admin/registrations/accountsDashboard.html index 9f26b15..37bd679 100644 --- a/views/admin/registrations/accountsDashboard.html +++ b/views/admin/registrations/accountsDashboard.html @@ -35,10 +35,16 @@ ID - Active - Name - Created Member ID + Active + First Name + Last Name + Organization + Title + City + State + Phone + Created @@ -48,14 +54,19 @@ {else} {/if} - {$account.id} + {$account.id} + {$account.member_id} {$account.active.name} - - {$account.fname} {$account.lname} - + {$account.fname} + {$account.lname} + {$account.org} + {$account.title} + {$account.city} + {$account.state.name} + {$account.phone} {$account.date_created.timestamp|date_format:"%D"} - {$account.member_id} + {/foreach} {/if} diff --git a/views/admin/registrations/requestDashboard.html b/views/admin/registrations/requestDashboard.html index baaa708..36f75dd 100644 --- a/views/admin/registrations/requestDashboard.html +++ b/views/admin/registrations/requestDashboard.html @@ -74,11 +74,26 @@ Total: {$cart.request.total}
- Method: {$cart.request.pay_method.name} + Name on Card: {$cart.request.cc_name} +
+
+ Card Type: {$cart.request.cc_type.name} +
+
+ Card Number: {$cart.request.cc_numb} +
+
+ Expiration: {$cart.request.cc_exp} +
+
+ Confirmation: {$cart.request.cc_conf} +
+
+ Card Process Msg: {$cart.request.cc_proc_mesg}
{else}
- (n/a) + (not available)
{/if} @@ -121,6 +136,8 @@
{$cart.request.summary}
+ {else} + (not available) {/if} -- 2.17.1