blogs.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {% extends "tables/editor_table.html" %}
  2. {% block table_body %}
  3. {% for idx in range(0, length) %}
  4. {% if blogs[idx].url != '/blogs' %}
  5. <tbody>
  6. <tr>
  7. <td class="table__data">{{ idx+1 }}</td>
  8. <td class="table__data">{{ blogs[idx].title }}</td>
  9. <td class="table__data">{{ blogs[idx].date }}</td>
  10. <td class="table__data"><input type="checkbox" {{ 'checked' if (blogs[idx].draft.lower()=='false' ) }}
  11. onclick="toggleDraft(this,'{{ blogs[idx].url }}');" /></td>
  12. <td>
  13. <div class="d-flex justify-content-center">
  14. <button class="btn btn_light mr-1" onclick="getHeader('{{ blogs[idx].url }}');"><b>主資訊</b> <i
  15. class="fas fa-pencil-alt"></i></button>
  16. <a class="m-1 btn__edit" href="{{ url_for('editor.editor', url=blogs[idx].url) }}"><i
  17. class="fas fa-edit"></i></a>
  18. <form action="{{ url_for('blogs.remove', url=blogs[idx].url) }}" method="POST" class="m-1 inline_block">
  19. <button class="btn__delete" type="submit" value="delete" onclick=" return confirm('確定要刪除此專欄文章?');"><i
  20. class="fas fa-trash-alt"></i></button>
  21. </form>
  22. </div>
  23. </td>
  24. </tr>
  25. </tbody>
  26. {% endif %}
  27. {% endfor %}
  28. {% endblock table_body %}
  29. {% block modal_body %}
  30. <form action="{{ url_for('blogs.create') }}" method="POST" enctype="multipart/form-data">
  31. <div class="form-group">
  32. {{ form.title.label(class="form-control-label modal__label mb-1") }} <span class="text-danger">(建議字數: 15字內)</span>
  33. {{ form.title(class="form-control form-control-lg") }}
  34. {{ form.image.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議尺寸/比例:
  35. 寬2664px * 高956px)</span>
  36. {{ form.image(class="form-control form-control-lg modal__file") }}
  37. {{ form.categories.label(class="form-control-label modal__label mt-3 mb-1") }}
  38. {{ form.categories(class="form-control form-control-lg") }}
  39. </div>
  40. <div class="modal-footer pb-0 border-0">
  41. <button type="button" class="btn btn__cancel" data-dismiss="modal">取消</button>
  42. <input class="btn btn__submitadd" type="submit" value="完成">
  43. </div>
  44. </form>
  45. {% endblock modal_body %}
  46. {% block main_info_modal_body %}
  47. <div class="modal fade" id="myModal">
  48. <div class="modal-dialog">
  49. <div class="modal-content">
  50. <div class="modal-header">
  51. <h4 class="modal-title">設計專欄-主資訊修改</h4>
  52. <button type="button" class="close" data-dismiss="modal">×</button>
  53. </div>
  54. <div class="modal-body">
  55. <table class="table table-bordered">
  56. <tbody>
  57. <tr>
  58. <td>
  59. <h4>標題</h4>
  60. </td>
  61. <td><input class="form-control" id="ctitle" type="text" />
  62. <div class="mt-1 text-danger">(建議字數: 15字內)</div>
  63. </td>
  64. </tr>
  65. <tr>
  66. <td>
  67. <h4>圖片</h4>
  68. </td>
  69. <td>
  70. <input class="form-control" id="cfile" type="file" />
  71. <div class="mt-1 text-danger">(建議尺寸/比例: 寬2664px * 高956px)</div>
  72. </td>
  73. </tr>
  74. <tr>
  75. <tr id='scat'>
  76. <td>
  77. <h4>文章分類</h4>
  78. </td>
  79. <td><textarea class="form-control" rows="1" id="ccategories"></textarea>
  80. <div class="mt-1 text-danger">(建議字數: 15字內)</div>
  81. </td>
  82. </tr>
  83. <tr>
  84. <td>
  85. <h4>日期</h4>
  86. </td>
  87. <td><input class="form-control" id="cdate" type="text" /></td>
  88. </tr>
  89. <tr>
  90. <td>
  91. <h4>是否顯示</h4>
  92. </td>
  93. <td><input id="cdraft" type="checkbox" checked="true" /></td>
  94. </tr>
  95. </tbody>
  96. </table>
  97. <div class="d-none">
  98. <input id="ctype" type="text" /><br />
  99. <input id="curl" type="text" /><br />
  100. <input id="cimage" type="text" /><br />
  101. <input id="cweight" type="text" /><br />
  102. <input id="ctag" type="text" /><br />
  103. <input id="ccategories" type="text" /><br />
  104. <input id="ccaturl" type="text" /><br />
  105. <input id="ccol1" type="text" /><br />
  106. <input id="ccol2" type="text" /><br />
  107. </div>
  108. </div>
  109. <div class="modal-footer">
  110. <button type="button" id="uptbtn" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
  111. </div>
  112. </div>
  113. </div>
  114. </div>
  115. {% endblock %}