{% if users is defined and users != None %}

Showing {{users|count}} users

{% for user in users %} {% endfor %}
# Username E-Mail Phone Number Role Actions
{{user.id}} {{user.username}} {{user.email}} {{user.phone}} {{user.role}}
{% elif products is defined and products != None %}

Showing {{products|count}} products

{% for product in products %} {% endfor %}
# Name SellerID Price Category Quantity Actions
{{product.id}} {{product.name}} {{product.sellerID}} {{product.cost}} {{product.category}} {{product.quantityAvailable}}
{% else %}

Sorry... We have nothing to show here!

{% endif %}