update.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {% extends "base.html" %}
  2. {% load static %}
  3. {% block title %}
  4. 更新文章
  5. {% endblock title %}
  6. {% block content %}
  7. <div class="container">
  8. <div class="row">
  9. <div class="col-12">
  10. <br>
  11. <form method="post" action="." enctype="multipart/form-data">
  12. {% csrf_token %}
  13. <div class="form-group">
  14. <label for="title">
  15. 文章标题
  16. </label>
  17. <input type="text" class="form-control" id="title" name="title" value="{{ article.title }}">
  18. </div>
  19. {% if article.avatar %}
  20. <label for="body">
  21. 标题图
  22. </label>
  23. <div class="col-3">
  24. <img src="{{ article.avatar.url }}"
  25. alt="avatar"
  26. style="max-width: 100%; border-radius: 20px;"
  27. >
  28. </div>
  29. {% else %}
  30. <div class="form-group">
  31. <label for="avatar">标题图</label>
  32. <input type="file" class="form-control-file" name="avatar" id="avatar">
  33. </div>
  34. {% endif %}
  35. <div class="form-group">
  36. <label for="column">分类</label>
  37. <select class="form-control"
  38. id="column"
  39. name="column"
  40. >
  41. <option value="none">请选择分类..</option>
  42. {% for column in columns %}
  43. <option value="{{ column.id }}"
  44. {% if column.id == article.column.id %}
  45. selected
  46. {% endif %}
  47. >
  48. {{ column }}
  49. </option>
  50. {% endfor %}
  51. </select>
  52. </div>
  53. <!--标签-->
  54. <div class="form-group">
  55. <label for="tags">标签</label>
  56. <input type="text" class="form-control col-3" id="tags" name="tags" value="{{ tags }}">
  57. </div>
  58. <div class="form-group">
  59. <label for="body">
  60. 文章正文
  61. </label>
  62. <textarea type="text" class="form-control" id="body" name="body" rows="12">
  63. {{ article.body }}
  64. </textarea>
  65. </div>
  66. <button type="submit" class="btn btn-primary">
  67. 提交
  68. </button>
  69. </form>
  70. </div>
  71. </div>
  72. </div>
  73. {% endblock content %}