Advertisement
Guest User

create new user

a guest
Dec 9th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.51 KB | None | 0 0
  1. {% extends 'clothing/base.html' %}
  2. {% load static %}
  3. {% load bootstrap4 %}
  4. {% block title %} Update cloth - {% endblock title %}
  5. {% block content %}
  6.  
  7.  
  8.  
  9. <h2>Update cloth</h2>
  10.     <form id="cloth_update_form" enctype="multipart/form-data" action="{% url 'clothing:update_cloth' form.instance.id %}" method="POST">
  11.         {% csrf_token %}
  12.         {% bootstrap_form form fied_class='form-group' layout="horizontal"  %}
  13.         {% buttons submit="Update" %}{% endbuttons %}
  14.  
  15.     </form>
  16.  
  17. {% endblock content %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement