edit.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <div>
  2. <br>
  3. <div>
  4. 用户名:{{ user.username }}
  5. </div>
  6. {% if profile.avatar %}
  7. <div>
  8. 头像
  9. </div>
  10. <img src="{{ profile.avatar.url }}" styl="max-width: 20%; border-radius: 15%;">
  11. {% else %}
  12. <h5>
  13. 暂无头像
  14. </h5>
  15. {% endif %}
  16. <br>
  17. <br>
  18. <form method="post" action="." enctype="multipart/form-data">
  19. {% csrf_token %}
  20. <div>
  21. <label for="avatar">上传头像</label>
  22. <input type="file" name="avatar" id="avatar">
  23. </div>
  24. <div>
  25. <label for="phone">
  26. 电话
  27. </label>
  28. <input type="text" id="phone" name="phone" value="{{ profile.phone }}">
  29. </div>
  30. <div>
  31. <label for="bio">
  32. 简介
  33. </label>
  34. <textarea type="text" id="bio" name="bio" rows="12">
  35. {{ profile.bio }}
  36. </textarea>
  37. </div>
  38. <button type="submit">
  39. 提交
  40. </button>
  41. </form>
  42. </div>