Companys
{% for company in companys %}
{{ company.name }} ({{ company.id }})
{% if company.id.to_string() == akaunting_options.akaunting_company_id %}
{% endfor %}
Selected Company
{%else%}{%endif%}Items
{% for item in items %}
{{ Self::get_str(self, item.name) }}
{% endfor %}
Users
{% for user in users %}
{{ user.name }}
{% endfor %}
Customers
{% for customer in customers %}
{{ customer.name }}
{% endfor %}
Invoices
{% for invoice in invoices %}
{{ Self::get_str(self, invoice.document_number) }} | {{ Self::get_str(self, invoice.status) }}
{% endfor %}