debug.html 442 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <div>
  4. <form method="post" action=".">
  5. {% csrf_token %}
  6. {% for item in items %}
  7. <div>
  8. <label for="{{ item }}">{{ item }}</label>
  9. <input type="text" id="{{ item }}" name="{{ item }}">
  10. </div>
  11. {% endfor %}
  12. <button type="submit">submit</button>
  13. </form>
  14. </div>
  15. </html>