{% extends 'base.html' %} {% load static %} {% block title %} All Customers {% endblock %} {% block header %} {% include 'components/header.html' %} {% endblock %} {% block content %} {% if user.is_authenticated %}

Your Profile


Employee id :  {{ user.id }}

Received Amount:  {{ user.receivedAmount }}

Received Bottles:  {{ user.receivedBottle }}

{% if request.user.is_authenticated %}

Vehicle Schedule


{% for days in schedule %} {% for area in days.areas.all %} {% endfor %} {% endfor %}
Area City

{{ days.day }}

{{ area.name }}
{{ area.city }}
{% if not schedule %}
No Schedule Added Yet
{% endif %} {% endif %}
{% endif %} {% endblock %} {% block footer %} {% include 'components/footer.html' %} {% endblock %}