{% extends 'stela_control/index.html' %} {% load i18n %} {% load l10n %} {% load static %} {% load hosts %} {% load stelatags %} {% load humanize %} {% block styles %} {% endblock %} {% block section %} {% block title %} {% if site_data.company_public %} {% else %} {% endif %}

{% trans "Payments" %}

{% endblock %} {% block side_title %}

STELA CONTROL DYNAMIC | {% trans "finances" %}

{% endblock %}
{% if not wallet %}
{% trans "Hello" %}, {{user.username|title }} 🎉

{% trans "Welcome, your" %} {% trans "first step" %} {% trans "is register your wallet" %}.

{% trans "Add wallet" %} {% else %}
{% trans "Hello" %}, {{user.username|title }} 🎉
{% if total_sales.total > 0 %}

{% if today_sales.get_total %} {% trans "Today sales" %} ${{today_sales.get_total}} {% trans "it represents" %} {% if increase > 0 %} {{increase}}% {% trans "increase from yesterday" %}{% else %}{{increase}}% {% trans "decrease from yesterday" %}{% endif %} {% else %} {% trans "You have no sales today" %}. {% endif %}

{% else %}

{% trans "You don't have sales yet" %}

{% endif %} {% endif %}
View Badge User
{% trans "Total Profit" %} {% if total_profit.get_profit > 0 %}

${{total_profit.get_profit|cash}}

{% else %}

$0

{% endif %}
{% trans "Year Taxes" %} {% if total_paid.get_total > 0 %}

${{year_taxes.get_taxes}}

{% else %}

$0

{% endif %}
{% trans "Graph Revenue" %}
{% trans "Company Balance" %}
{% trans "Current Year" %} {% if current.get_profit > 0 %}
${{current.get_profit|cash}}
{% else %}
$0
{% endif %}
{% trans "Last Year" %} {% if last.get_profit > 0 %}
${{last.get_profit|cash}}
{% else %}
$0
{% endif %}
{% trans "Withdrawals" %} {% if total_pay.total > 0 %}

${{total_pay.total|cash}}

{% else %}

$0

{% endif %}
{% trans "Total Pay" %} {% if total_paid.get_total > 0 %}

${{total_paid.get_total}}

{% else %}

$0

{% endif %}
{% if wallet %}
{% trans "Wallets" %}
{% trans "Wallets" %}
{% trans "Available budget" %}
{% if budget.total > 100 %}

${{budget.total}}

{% else %} {% if budget.total > 0 %}

${{budget.total}}

{% else %}

$0

{% endif %} {% endif %}
{% else %}

{% trans "Available budget" %}

{% trans "Please register you wallet to see available budget" %}.
{% endif %}
{% trans "Order Statistics" %}
{% if total_sales.total > 0 %} ${{total_sales.total|cash}} {% trans "Sales" %} {% else %} {% trans "You don't have sales yet" %} {% endif %}

{{order_count|cash}}

{% trans "Total Orders" %}
    {% for service in orderitems %}
  • {{service.nameitem}}
    ${{service.total}}
  • {% empty %}
    {% trans "You still do not have purchases" %}
    {% endfor %}
{% trans "Site Charges" %}
{% trans "Withdrawals" %}
    {% for pay in payments %}
  • User
    {% trans "Send Money" %}
    {% trans "Stela Payments" %}
    +{{pay.amount}}
    USD
  • {% empty %}

    {% trans "You have no recorded withdrawal" %}.

    {% endfor %}
{% block scripts %} {% endblock %} {% endblock %}