From: Steve Sutton Date: Tue, 11 Dec 2018 00:12:01 +0000 (-0500) Subject: Updating the invoice admin table. X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=6bcad461f83375ab0800d8879a379f65ca990154;p=WP-Plugins%2Fglm-member-db-billing.git Updating the invoice admin table. Shorten the columns and add a tr on hover. --- diff --git a/views/admin/billing/invoices.html b/views/admin/billing/invoices.html index b34448d..07d8196 100644 --- a/views/admin/billing/invoices.html +++ b/views/admin/billing/invoices.html @@ -49,54 +49,61 @@
 
- - - - - - - - - - - - - - - - - {if $haveInvoices} - {assign var="i" value="0"} - {foreach $invoices as $t} - {if $i++ is odd by 1} - - {else} - - {/if} - - - - - - - - - - - - {/foreach} - {else} - - {/if} - -
IDMember NameInvoice ForTimeDue DateAmount TotalBalancePay InvoiceViewDelete
{$t.id} {$t.member_name} - {foreach $t.line_items as $item} - {$item.name} {if $item.recurring && $item.recurrence_string}( {$item.recurrence_string} ){/if} - {/foreach} - {$t.transaction_time.datetime} {$t.due_date.date} {$t.amount_total} {$t.balance} {if $t.paid.value} {else}Pay Invoice{/if} - View - Print - Delete
(no Invoice Types listed)
+
+ + + + + + + + + + + + {* + + *} + + {if $haveInvoices} + {foreach $invoices as $t} + + + + + + + + + + + + {/foreach} + {else} + + {/if} + +
Member NameInvoice ForTimeDue DateAmount TotalBalance
{$t.member_name} + {foreach $t.line_items as $item} + {$item.name} {if $item.recurring && $item.recurrence_string}( {$item.recurrence_string} ){/if} + {/foreach} + {$t.transaction_time.datetime} {$t.due_date.date} {$t.amount_total} {$t.balance}
(no Invoice Types listed)
+
{if $paging} @@ -108,6 +115,19 @@