{% extends 'base.html' %} {% load i18n %} {% block content %}

{% trans "Businesses" %}

{% trans "Switch between your companies or create a new one." %}

{% if current_business %} {% trans "Edit current" %} {% endif %}

{% trans "Your businesses" %}

{% if businesses %}
{% for biz in businesses %}
{{ biz.name }}
{% if biz.city %}{{ biz.city }}{% if biz.country %}, {% endif %}{% endif %} {% if biz.country %}{{ biz.country.name }}{% endif %}
{% trans "Currency" %}: {{ biz.currency }}{% if biz.language %} | {% trans "Language" %}: {{ biz.language }}{% endif %}
{% if current_business and biz.id == current_business.id %} {% trans "Active" %} {% else %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% else %}

{% trans "No businesses yet. Use the button above to create your first company." %}

{% endif %}
{% endblock %}