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

Your Profile


Username:  {{ user.username }}

email:  {{ user.email }}

CNIC:  {{ user.cnic }}

Phone Number:  {{ user.PhoneNo }}

Bottles Record


{% csrf_token %} {% for items in bottles %} {% load mathfilters %} {% endfor %}
Name Available Given Empty Filled Total Amount
{{ items.name }} {{ items.total|sub:items.distributed }} {{ items.distributed }} {{ items.total|sub:items.filled |sub:items.distributed }}
{% if error %} {% endif %}
{% endif %} {% endblock %} {% block footer %} {% include 'components/footer.html' %} {% endblock %}