Sichanov

xcxc

Dec 10th, 2022
661
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.63 KB | None | 0 0
  1. # не работи
  2.  
  3. <form method="post" action="{% url 'add object' %}">
  4.     <div>{{ form.name.label_tag }} {{ form.name }}</div>
  5.     <div>{{ form.age.label_tag }} {{ form.age }}</div>
  6.     <div>{{ form.location.label_tag }} {{ form.location }}</div>
  7.     <div>{{ form.bio.label_tag }} {{ form.bio }}</div>
  8.     <input type="hidden" name="next" value="{{ next }}">
  9.     <button>Submit</button>
  10.     {% csrf_token %}
  11. </form>
  12.  
  13. # работи
  14. <form method="post" action="{% url 'add object' %}">
  15.     {{ form.as_p }}
  16.     <input type="hidden" name="next" value="{{ next }}">
  17.     <button>Submit</button>
  18.     {% csrf_token %}
  19. </form>
Advertisement
Add Comment
Please, Sign In to add comment