Advertisement
Guest User

Create cloth

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