Advertisement
Guest User

Untitled

a guest
Nov 10th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.50 KB | None | 0 0
  1.                     <form action="{% url 'shop_page' %}">
  2.                     {% for i in material_list %}
  3.                         <div class="form-check">
  4.                             <input class="form-check-input" type="checkbox" value="{{ i.id }}" id="{{ i.id }}">
  5.                             <label class="form-check-label">{{ i.name }}</label>
  6.                         </div>
  7.                     {% endfor %}
  8.                     <input class="btn btn-dark" type="submit" value="Submit"/>
  9.                     </from>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement