{% extends "inventory/base2.html" %} {% block headermsg %} {% load staticfiles %}

{{ name }}

{% if digital == 'True' %}
Digital Inventory
{% endif %}
{% endblock headermsg %} {% block content %}
The code for the pay now button is:
<a href="{{ href }}" style="text-decoration: none;" onmouseover="this.style.textDecoration = 'underline'" onmouseout="this.style.textDecoration = 'none'">buy now</a>
The above code would look like(click to perform the payment):
buy now {% if digital == 'False' %} {% endif %}
Description {{ description }}
The Cuurent Inventory on Hand {{ inventory_on_hand }}
Price {{ price }}
Total number of prducts sold {{ count }}
{% csrf_token %}
{% endblock content %}