| {{ group.title }} | {% for sum in group.sums %}
                        {% if group.transaction_type == 'Deposit' %}
                            {{ formatAmountBySymbol(sum.amount*-1, sum.currency_symbol, sum.currency_decimal_places) }}{% if loop.index != group.sums|length %},{% endif %}
                        {% elseif group.transaction_type == 'Transfer' %}
                            
                            {{ formatAmountBySymbol(sum.amount*-1, sum.currency_symbol, sum.currency_decimal_places, false) }}{% if loop.index != group.sums|length %},{% endif %}X
                            
                        {% else %}
                            {{ formatAmountBySymbol(sum.amount, sum.currency_symbol, sum.currency_decimal_places) }}{% if loop.index != group.sums|length %},{% endif %}
                        {% endif %}
                    {% endfor %}{% if showCategory or showBudget %} | {% else %} | {% endif %} | 
                        
                        
                     |  | 
        {% endif %}
        {% for index, transaction in group.transactions %}
            {% set style="" %}
            {% if group.transactions|length == loop.index and group.count > 1 %}
                {% set style="border-bottom:1px #aaa solid;" %}
            {% endif %}
            
                | {% if transaction.transaction_type_type == 'Withdrawal' %}
                        
                    {% endif %}
                    {% if transaction.transaction_type_type == 'Deposit' %}
                        
                    {% endif %}
                    {% if transaction.transaction_type_type == 'Transfer' %}
                        
                    {% endif %}
                    {% if transaction.transaction_type_type == 'Reconciliation' %}
                        
                    {% endif %}
                    {% if transaction.transaction_type_type == 'Opening balance' %}
                        
                    {% endif %} | {% if transaction.reconciled %}
                        
                    {% endif %}
                    {% if group.count == 1 %}
                    
                        {% endif %}
                        {{ transaction.description }}
                        {% if group.count == 1 %}
                    
                    {% endif %} | {% if transaction.transaction_type_type == 'Deposit' %}
                        {{ formatAmountBySymbol(transaction.amount*-1, transaction.currency_symbol, transaction.currency_decimal_places) }}
                        {% if null != transaction.foreign_amount %}
                            ({{ formatAmountBySymbol(transaction.foreign_amount*-1, transaction.foreign_currency_symbol, transaction.foreign_currency_decimal_places) }})
                        {% endif %}
                    {% elseif transaction.transaction_type_type == 'Transfer' %}
                        
                        {{ formatAmountBySymbol(transaction.amount*-1, transaction.currency_symbol, transaction.currency_decimal_places, false) }}
                            {% if null != transaction.foreign_amount %}
                                ({{ formatAmountBySymbol(transaction.foreign_amount*-1, transaction.foreign_currency_symbol, transaction.foreign_currency_decimal_places, false) }})
                            {% endif %}
                            
                    {% elseif transaction.transaction_type_type == 'Opening balance' %}
                        {% if transaction.source_account_type == 'Initial balance account' %}
                            {{ formatAmountBySymbol(transaction.amount*-1, transaction.currency_symbol, transaction.currency_decimal_places) }}
                            {% if null != transaction.foreign_amount %}
                                ({{ formatAmountBySymbol(transaction.foreign_amount*-1, transaction.foreign_currency_symbol, transaction.foreign_currency_decimal_places) }})
                            {% endif %}
                        {% else %}
                            {{ formatAmountBySymbol(transaction.amount, transaction.currency_symbol, transaction.currency_decimal_places) }}
                            {% if null != transaction.foreign_amount %}
                                ({{ formatAmountBySymbol(transaction.foreign_amount, transaction.foreign_currency_symbol, transaction.foreign_currency_decimal_places) }})
                            {% endif %}
                        {% endif %}
                    {% else %}
                        {{ formatAmountBySymbol(transaction.amount, transaction.currency_symbol, transaction.currency_decimal_places) }}
                        {% if null != transaction.foreign_amount %}
                            ({{ formatAmountBySymbol(transaction.foreign_amount, transaction.foreign_currency_symbol, transaction.foreign_currency_decimal_places) }})
                        {% endif %}
                    {% endif %} | {{ transaction.date.formatLocalized(monthAndDayFormat) }} | {{ transaction.source_account_name }} | {{ transaction.destination_account_name }}{% if showCategory %} | {% if transaction.category_id %}
                            {{ transaction.category_name }}
                        {% endif %}{% endif %}
                {% if showBudget %} | {% if transaction.budget_id %}
                            {{ transaction.budget_name }}
                        {% endif %}{% endif %} | {% if group.count == 1 %} 
                            
                            
                        {% endif %} | 
                        
                     | 
        {% endfor %}
    {% endfor %}