{% extends 'base.html' %} {% load static %} {% block content %}
Welcome {{request.user.user_type}} 🎉

to Navya Bakers

Today's sale

Revenue

{{today_revenue}}

{% if today_revenue_percent_with_week.flag == 'increase' %} {% else %} {% endif %}{{today_revenue_percent_with_week.today_revenue_percent_with_week}}% vs last week
No of sales

{{orders_today}}

{% if today_count_percent_with_week.flag == 'increase' %} {% else %} {% endif %} {{today_count_percent_with_week.today_count_percent_with_week}}% vs last week
Today's performance

Delivery Success

{{delivery_success_percentage}}

Avg Order Value

{{avg_today_revenue}}

Avg Failed Value

{{avg_failed_order}}

Today's Leaderboard

{% if grand_total_by_store %} {% for i in grand_total_by_store %}
{% if i.store_uuid__unit_name %}{{i.store_uuid__unit_name}} {% else %} Untitled {% endif %}
{% if i.total_amount %}{{i.total_amount}} {% else %} 0.00 {% endif %}
{% endfor %} {% else %} {% for i in grand_total_by_pu %}
{{i.pu_uuid__pu_name}}
{{i.total_amount}}
{% endfor %} {% endif %}
Revenue - Aug 2024

₹ {{month_revenue.month_revenue}}
This Week
{% if revenue_difference_output.flag == 'increase' %} {% else %} {% endif %}{{revenue_difference_output.revenue_difference}} vs last week
Today's Orders

{{new_order_today}}
New
{{fulfiled_order}}
Fulfilled
{{currently_unassigned_order}}
Unassigned
{{failed_order}}
Failed
{% endblock %}