2017-09-06 16:05:35 +01:00
< div class = "animated fadeIn" >
< div class = "row" >
< div class = "col-lg-12" >
< div class = "card" >
< div class = "card-header" >
< strong > Log of Outgoing Transactions< / strong >
< small > This lists all purchases that have been submitted.< / small >
< / div >
< div * ngIf = "!noTransactionList" class = "card-block" >
2017-09-07 11:49:19 +01:00
< table class = "table table-striped table-hover" >
2017-09-06 16:05:35 +01:00
< thead >
< tr >
< th > Seller< / th >
< th > Value< / th >
< th > Purchase Time< / th >
< / tr >
< / thead >
< tbody >
2017-09-06 17:51:56 +01:00
< tr transaction-result * ngFor = "let transaction of transactionList | paginate: paginateConfig" [ transaction ] = " transaction " > < / tr >
2017-09-06 16:05:35 +01:00
< / tbody >
< / table >
2017-09-06 17:51:56 +01:00
< pagination-template # p = "paginationApi"
[id]="paginateConfig.id"
(pageChange)="loadTransactions($event)">
2017-09-06 16:05:35 +01:00
< ul class = "pagination" >
2017-09-06 17:51:56 +01:00
< li class = "page-item" [ class . disabled ] = " p . isFirstPage ( ) " >
< a class = "page-link clickable" * ngIf = "!p.isFirstPage()" ( click ) = " p . previous ( ) " > Prev< / a >
< / li >
< li * ngFor = "let page of p.pages" class = "page-item" [ class . active ] = " p . getCurrent ( ) = = = page . value " >
< a class = "page-link clickable" ( click ) = " p . setCurrent ( page . value ) " * ngIf = "p.getCurrent() !== page.value" >
< span > {{ page.label }}< / span >
< / a >
< div class = "page-link" * ngIf = "p.getCurrent() === page.value" >
< span > {{ page.label }}< / span >
< / div >
< / li >
< li class = "page-item" [ class . disabled ] = " p . isLastPage ( ) " >
< a class = "page-link clickable" * ngIf = "!p.isLastPage()" ( click ) = " p . next ( ) " > Next< / a >
2017-09-06 16:05:35 +01:00
< / li >
< / ul >
2017-09-06 17:51:56 +01:00
< / pagination-template >
2017-09-06 16:05:35 +01:00
< / div >
< div * ngIf = "noTransactionList" class = "card-block" >
No Transactions available.
< / div >
< / div >
2018-03-12 17:41:01 +00:00
< div class = "card" >
< div class = "card-header" >
< strong > Recurring Transactions< / strong >
< small > Here you can control your recurring transactions.< / small >
< / div >
< div * ngIf = "!noRecurringList" class = "card-block" >
< table class = "table table-striped table-hover" >
< thead >
< tr >
< th > Seller< / th >
< th > Value< / th >
< th > Purchase Time< / th >
< / tr >
< / thead >
< tbody >
< tr transaction-result * ngFor = "let transaction of transactionList | paginate: paginateConfig" [ transaction ] = " transaction " > < / tr >
< / tbody >
< / table >
< / div >
< div * ngIf = "noRecurringList" class = "card-block" >
No Recurring Transactions.
< / div >
< / div >
2017-09-06 16:05:35 +01:00
< / div >
< / div >
< / div >