Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. {% for Product in oldProducts %}
  2. <div class="col-lg-4">
  3. <img class="img-circle" src="{% static "ecommerce/img/weightgain2.png" %}" alt="Generic placeholder image" width="140" height="140">
  4. <h2>{{ Product.Name }}</h2>
  5. <p>{{ Product.Price }} </br> {{ Product.Description }}</p>
  6. <form method='POST' action="{% url 'ecommerce:addbasket' %}">
  7. {% csrf_token %}
  8. <input type="hidden" name="stuffNum" value="{{ Product.ProductID }}">
  9. <input type="hidden" name="stuffName" value="{{ Product.Name }}">
  10. <input type="hidden" name="stuffPri" value="{{ Product.Price }}">
  11. <input type="hidden" name="stuffDesc" value="{{ Product.Description }}">
  12. <button class="btn btn-default" type="submit">Add To Basket</button>
  13. </form>
  14. </div><!-- /.col-lg-4 -->
  15. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement