collections.html 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. {% extends "tables/editor_table.html" %}
  2. {% block table_body %}
  3. <script src="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest"></script>
  4. <script src="https://cdn.jsdelivr.net/npm/@editorjs/image@latest"></script><!-- Image -->
  5. <script type="text/javascript" src="/static/js/yo.js"></script>
  6. {% for idx in range(0, length) %}
  7. {% if collections[idx].url != '/collection' %}
  8. <tbody>
  9. <tr>
  10. <td class="table__data">{{ idx + 1 }}</td>
  11. <td class="table__data">{{ collections[idx].title }}</td>
  12. <td class="table__data">{{ collections[idx].date }}</td>
  13. <!-- <td class="table__data">1</td> -->
  14. <td class="table__data"><input type="checkbox" {{ 'checked' if (collections[idx].draft.lower()=='false' ) }}
  15. onclick="toggleDraft(this,'{{ collections[idx].url }}');" /></td>
  16. <td>
  17. <div class="d-flex justify-content-center">
  18. <button class="btn btn_light mr-1" onclick="getHeader('{{ collections[idx].url }}');"><b>主資訊</b> <i
  19. class="fas fa-pencil-alt"></i></button>
  20. <a class="m-1 btn__edit" href="{{ url_for('editor.editor', url=collections[idx].url) }}"><i
  21. class="fas fa-edit"></i></a>
  22. <form action="{{ url_for('collections.remove', url=collections[idx].url) }}" method="POST" method="POST"
  23. class="m-1 inline_block">
  24. <button class="btn__delete" type="submit" value="delete" onclick="return confirm('確定要刪除此作品?');"><i
  25. class="fas fa-trash-alt"></i></button>
  26. </form>
  27. </div>
  28. </td>
  29. </tr>
  30. </tbody>
  31. {% endif %}
  32. {% endfor %}
  33. {% endblock table_body %}
  34. <!-- Modal -->
  35. {% block modal_body %}
  36. <form action="{{ url_for('collections.create') }}" method="POST" enctype="multipart/form-data">
  37. <div class="form-group">
  38. {{ form.title.label(class="form-control-label modal__label mb-1") }} <span class="text-danger">(建議字數: 15字內)</span>
  39. {{ form.title(class="form-control form-control-lg") }}
  40. {{ form.collectiontitle.label(class="form-control-label modal__label mb-1") }}
  41. {{ form.collectiontitle(class="form-control form-control-lg") }}
  42. {{ form.description.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議字數:
  43. 50字內)</span>
  44. {{ form.collectiondesc(class="form-control form-control-lg textarea") }}
  45. {{ form.image.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議尺寸/比例:
  46. 寬2048px * 高1365px)</span>
  47. {{ form.image(class="form-control form-control-lg modal__file") }}
  48. {{ form.description.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議字數:
  49. 50字內)</span>
  50. {{ form.description(class="form-control form-control-lg textarea") }}
  51. {{ form.tags.label(class="form-control-label modal__label mb-1") }}
  52. {{ form.tags(class="form-control form-control-lg") }}
  53. {{ form.coverimg.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議尺寸/比例:
  54. 寬____px * 高____px)</span>
  55. {{ form.coverimg(class="form-control form-control-lg modal__file") }}
  56. {{ form.bannerimgtext.label(class="form-control-label modal__label mt-3 mb-1") }}
  57. {{ form.bannerimgtext(class="form-control form-control-lg") }}
  58. {{ form.homeowner.label(class="form-control-label modal__label mt-3 mb-1") }}
  59. {{ form.homeowner(class="form-control form-control-lg") }}
  60. {{ form.size.label(class="form-control-label modal__label mt-3 mb-1") }}
  61. {{ form.size(class="form-control form-control-lg") }}
  62. {{ form.bednum.label(class="form-control-label modal__label mt-3 mb-1") }}
  63. {{ form.bednum(class="form-control form-control-lg") }}
  64. {{ form.housetype.label(class="form-control-label modal__label mt-3 mb-1") }}
  65. {{ form.housetype(class="form-control form-control-lg") }}
  66. {{ form.space.label(class="form-control-label modal__label mt-3 mb-1") }}
  67. {{ form.space(class="form-control form-control-lg") }}
  68. {{ form.loc.label(class="form-control-label modal__label mt-3 mb-1") }}
  69. {{ form.loc(class="form-control form-control-lg") }}
  70. {{ form.designer.label(class="form-control-label modal__label mt-3 mb-1") }}
  71. {{ form.designer(class="form-control form-control-lg") }}
  72. {{ form.budget.label(class="form-control-label modal__label mt-3 mb-1") }}
  73. {{ form.budget(class="form-control form-control-lg") }}
  74. {{ form.construction.label(class="form-control-label modal__label mt-3 mb-1") }}
  75. {{ form.construction(class="form-control form-control-lg") }}
  76. {{ form.collectionslider.label(class="form-control-label modal__label mt-3 mb-1") }}
  77. {{ form.collectionslider(class="form-control form-control-lg modal__file") }}
  78. {{ form.comment.label(class="form-control-label modal__label mt-3 mb-1") }}
  79. {{ form.comment(class="form-control form-control-lg modal__file") }}
  80. </div>
  81. <div class="modal-footer pb-0 border-0">
  82. <button type="button" class="btn btn__cancel" data-dismiss="modal">取消</button>
  83. <input class="btn btn__submitadd" type="submit" value="完成">
  84. </div>
  85. </form>
  86. {% endblock modal_body %}
  87. {% block main_info_modal_body %}
  88. <div class="modal fade" id="myModal">
  89. <div class="modal-dialog">
  90. <div class="modal-content">
  91. <div class="modal-header">
  92. <h4 class="modal-title">作品集-主資訊修改</h4>
  93. <button type="button" class="close" data-dismiss="modal">×</button>
  94. </div>
  95. <div class="modal-body">
  96. <table class="table table-bordered">
  97. <tbody>
  98. <tr>
  99. <td>
  100. <h4>標題</h4>
  101. </td>
  102. <td><input class="form-control" id="ctitle" type="text" />
  103. <div class="mt-1 text-danger">(建議字數: 15字內)</div>
  104. </td>
  105. </tr>
  106. <tr>
  107. <td>
  108. <h4>Meta標題</h4>
  109. </td>
  110. <td><input class="form-control" id="cmetattl" type="text" />
  111. </td>
  112. </tr>
  113. <tr>
  114. <td>
  115. <h4>Meta說明</h4>
  116. </td>
  117. <td><input class="form-control" id="cmetadsc" type="text" />
  118. </td>
  119. </tr>
  120. <tr>
  121. <td>
  122. <h4>圖片</h4>
  123. </td>
  124. <td>
  125. <input class="form-control" id="cfile" type="file" />
  126. <div class="mt-1 text-danger">(建議尺寸/比例: 寬2048px * 高1365px)</div>
  127. </td>
  128. </tr>
  129. <tr id='sdesc'>
  130. <td>
  131. <h4>描述</h4>
  132. </td>
  133. <td><textarea class="form-control" rows="3" id="cdescription"></textarea>
  134. <div class="mt-1 text-danger">(建議字數: 50字內)</div>
  135. </td>
  136. </tr>
  137. <tr>
  138. <td>
  139. <h4>日期</h4>
  140. </td>
  141. <td><input class="form-control" id="cdate" type="text" /></td>
  142. </tr>
  143. <tr>
  144. <td>
  145. <h4>類型</h4>
  146. </td>
  147. <td><select id="thousetype">
  148. <option value="">類型</option>
  149. <option>大樓</option>
  150. <option>透天</option>
  151. </select></td>
  152. </tr>
  153. <tr>
  154. <td>
  155. <h4>坪數</h4>
  156. </td>
  157. <td><input class="form-control" id="tpinsize" type="text" /></td>
  158. </tr>
  159. <tr>
  160. <td>
  161. <h4>預算</h4>
  162. </td>
  163. <td><input class="form-control" id="tbudget" type="text" /></td>
  164. </tr>
  165. <tr>
  166. <td>
  167. <h4>格局</h4>
  168. </td>
  169. <td><select id="troomscount">
  170. <option value="">格局</option>
  171. <option>1房</option>
  172. <option>2房</option>
  173. <option>3房</option>
  174. <option>4房以上</option>
  175. </select></td>
  176. </tr>
  177. <tr>
  178. <td>
  179. <h4>是否顯示</h4>
  180. </td>
  181. <td><input id="cdraft" type="checkbox" checked="true" /></td>
  182. </tr>
  183. </tbody>
  184. </table>
  185. <div class="d-none">
  186. <input id="ctype" type="text" /><br />
  187. <input id="curl" type="text" /><br />
  188. <input id="cimage" type="text" /><br />
  189. <input id="cweight" type="text" /><br />
  190. <input id="ctag" type="text" /><br />
  191. <input id="ctags" type="text" /><br />
  192. <input id="ccategories" type="text" /><br />
  193. <input id="ccol1" type="text" /><br />
  194. <input id="ccol2" type="text" /><br />
  195. </div>
  196. </div>
  197. <div class="modal-footer">
  198. <button type="button" id="uptbtn" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
  199. </div>
  200. </div>
  201. </div>
  202. </div>
  203. {% endblock %}