Нет описания

mystore_index.html 380B

12345678910111213141516171819
  1. {% extends "fruit/mystore.html" %}
  2. {% load static %}
  3. {% load crispy_forms_tags %}
  4. {% block header %}
  5. {{ storeForm.media }}
  6. {% endblock %}
  7. {% block store_main %}
  8. {{ stores }}
  9. <form method="post">
  10. {% csrf_token %}
  11. {{ storeForm | crispy }}
  12. <br>
  13. <input type='submit' class='btn btn-primary' name='updateStore' value="Update" />
  14. </form>
  15. {% endblock %}