0 Contribution Report 1 Bronson Nichols posted 11 Months Ago How do I add the transaction code and the comments from a financial transaction to the contribution report? I have the below code. What value should be after "tranactionDetail."? I thought maybe it would be tranactionDetail.Comments, but that doesn't work. I don't know what the field name is<table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Date</th> <th>Type</th> <th>Comments</th> <th>Account</th> <th style="text-align:right">Amount</th> </tr> </thead> <tbody> {% for transactionDetail in TransactionDetails %} <tr> <td>{{ transactionDetail.Transaction.TransactionDateTime | Date:'M/d/yyyy' }}</td> <td>{{ transactionDetail.Transaction.FinancialPaymentDetail.CurrencyTypeValue.Value }}</td> <td>{{ transactionDetail.}}</td> <td>{{ transactionDetail.Account.Name }}</td> <td style="text-align:right">{{ currencySymbol }}{{ transactionDetail.Amount }}</td> </tr> {% endfor %} </tbody>