collections.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  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.description.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議字數:
  41. 30字內)</span>
  42. {{ form.description(class="form-control form-control-lg textarea") }}
  43. {{ form.collectiontitle.label(class="form-control-label modal__label mb-1") }}
  44. {{ form.collectiontitle(class="form-control form-control-lg") }}
  45. {{ form.collectiondesc.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議字數:
  46. 133字內)</span>
  47. {{ form.collectiondesc(class="form-control form-control-lg textarea") }}
  48. {{ form.image.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議尺寸/比例:
  49. 寬2048px * 高1365px)</span>
  50. {{ form.image(class="form-control form-control-lg modal__file") }}
  51. {{ form.tags.label(class="form-control-label modal__label mb-1 d-none") }}
  52. {{ form.tags(class="form-control form-control-lg d-none") }}
  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.ownerimg.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(若無屋主照片則免填)</span>
  61. {{ form.ownerimg(class="form-control form-control-lg") }}
  62. {{ form.size.label(class="form-control-label modal__label mt-3 mb-1") }}
  63. {{ form.size(class="form-control form-control-lg") }}
  64. {{ form.housesize.label(class="form-control-label modal__label mt-3 mb-1") }}
  65. {{ form.housesize(class="form-control form-control-lg") }}
  66. {{ form.bednum.label(class="form-control-label modal__label mt-3 mb-1") }}
  67. {{ form.bednum(class="form-control form-control-lg") }}
  68. {{ form.roomcount.label(class="form-control-label modal__label mt-3 mb-1") }}
  69. {{ form.roomcount(class="form-control form-control-lg") }}
  70. {{ form.housetype.label(class="form-control-label modal__label mt-3 mb-1") }}
  71. {{ form.housetype(class="form-control form-control-lg") }}
  72. {{ form.space.label(class="form-control-label modal__label mt-3 mb-1") }}
  73. {{ form.space(class="form-control form-control-lg") }}
  74. {{ form.loc.label(class="form-control-label modal__label mt-3 mb-1") }}
  75. {{ form.loc(class="form-control form-control-lg") }}
  76. {{ form.designer.label(class="form-control-label modal__label mt-3 mb-1") }}
  77. {{ form.designer(class="form-control form-control-lg") }}
  78. {{ form.budgetr.label(class="form-control-label modal__label mt-3 mb-1") }}
  79. {{ form.budgetr(class="form-control form-control-lg") }}
  80. {{ form.budget.label(class="form-control-label modal__label mt-3 mb-1") }}
  81. {{ form.budget(class="form-control form-control-lg") }}
  82. {{ form.construction.label(class="form-control-label modal__label mt-3 mb-1") }}
  83. {{ form.construction(class="form-control form-control-lg") }}
  84. <span class="d-none">
  85. {{ form.comment.label(class="form-control-label modal__label mt-3 mb-1") }}
  86. {{ form.comment(class="form-control form-control-lg modal__file") }}
  87. </span>
  88. </div>
  89. <div class="modal-footer pb-0 border-0">
  90. <button type="button" class="btn btn__cancel" data-dismiss="modal">取消</button>
  91. <input class="btn btn__submitadd" type="submit" value="完成">
  92. </div>
  93. </form>
  94. {% endblock modal_body %}
  95. {% block main_info_modal_body %}
  96. <div class="modal fade" id="myModal">
  97. <div class="modal-dialog">
  98. <div class="modal-content">
  99. <div class="modal-header">
  100. <h4 class="modal-title">作品集-主資訊修改</h4>
  101. <button type="button" class="close" data-dismiss="modal">×</button>
  102. </div>
  103. <div class="modal-body">
  104. <table class="table table-bordered">
  105. <tbody>
  106. <tr>
  107. <td>
  108. <h4>標題</h4>
  109. </td>
  110. <td><input class="form-control" id="ctitle" type="text" />
  111. <div class="mt-1 text-danger">(建議字數:15 字內)</div>
  112. </td>
  113. </tr>
  114. <tr>
  115. <td>
  116. <h4>Meta 標題</h4>
  117. </td>
  118. <td><input class="form-control" id="cmetattl" type="text" />
  119. </td>
  120. </tr>
  121. <tr>
  122. <td>
  123. <h4>Meta 說明</h4>
  124. </td>
  125. <td><input class="form-control" id="cmetadsc" type="text" />
  126. </td>
  127. </tr>
  128. <tr id='sdesc'>
  129. <td>
  130. <h4>描述</h4>
  131. </td>
  132. <td><textarea class="form-control" rows="3" id="cdescription"></textarea>
  133. <div class="mt-1 text-danger">(建議字數:30 字內)</div>
  134. </td>
  135. </tr>
  136. <tr>
  137. <td>
  138. <h4>作品集標題</h4>
  139. </td>
  140. <td><input class="form-control" id="ccollname" type="text" />
  141. </td>
  142. </tr>
  143. <tr>
  144. <td>
  145. <h4>日期</h4>
  146. </td>
  147. <td><input class="form-control" id="cdate" type="text" /></td>
  148. </tr>
  149. <tr>
  150. <tr>
  151. <td>
  152. <h4>作品集描述</h4>
  153. </td>
  154. <td><textarea class="form-control" rows="3" id="ccolldesc"></textarea>
  155. </td>
  156. </tr>
  157. <tr>
  158. <td>
  159. <h4>圖片</h4>
  160. </td>
  161. <td>
  162. <input class="form-control" id="cfile" type="file" />
  163. <div class="mt-1 text-danger">(建議尺寸/比例:寬 2048px * 高 1365px)</div>
  164. </td>
  165. </tr>
  166. <tr>
  167. <td>
  168. <h4>分類</h4>
  169. </td>
  170. <td><input class="form-control" id="ctags" type="text" />
  171. </td>
  172. </tr>--
  173. <tr>
  174. <td>
  175. <h4>封面圖片</h4>
  176. </td>
  177. <td>
  178. <input class="form-control" id="cnewcoverimg" type="file" />
  179. <div class="mt-1 text-danger">(建議尺寸/比例:寬 ____px * 高 ____px)</div>
  180. </td>
  181. </tr>
  182. <tr>
  183. <td>
  184. <h4>封面圖片說明</h4>
  185. </td>
  186. <td><input class="form-control" id="ccoverimgtxt" type="text" />
  187. </td>
  188. </tr>
  189. <tr>
  190. <td>
  191. <h4>屋主</h4>
  192. </td>
  193. <td><input class="form-control" id="chomeowner" type="text" />
  194. </td>
  195. </tr>
  196. <tr>
  197. <td>
  198. <h4>屋主照片</h4>
  199. </td>
  200. <td class="d-flex flex-column">
  201. <input class="form-control" id="cnewownerimg" type="file" />
  202. <button id="removeOwnerImg" type="button" class="btn btn_light mt-2">移除前台屋主照片</button>
  203. </td>
  204. </tr>
  205. <tr>
  206. <td>
  207. <h4>坪數範圍</h4>
  208. </td>
  209. <td><select id="csize">
  210. <option value="20坪以下">20坪以下</option>
  211. <option value="20-35坪">20-35坪</option>
  212. <option value="36-50坪">36-50坪</option>
  213. <option value="51坪以上">51坪以上</option>
  214. </select></td>
  215. </tr>
  216. </td>
  217. </tr>
  218. <tr>
  219. <td>
  220. <h4>坪數</h4>
  221. </td>
  222. <td><input class="form-control" id="chousesize" type="text" /></td>
  223. </tr>
  224. <tr>
  225. <td>
  226. <h4>格局</h4>
  227. </td>
  228. <td><select id="cbednum">
  229. <option value="一房">一房</option>
  230. <option value="二房">二房</option>
  231. <option value="三房">三房</option>
  232. <option value="四房">四房</option>
  233. <option value="四房以上">四房以上</option>
  234. </select>
  235. </td>
  236. </tr>
  237. <tr>
  238. <td>
  239. <h4>幾房幾廳?</h4>
  240. </td>
  241. <td><input class="form-control" id="croomcount" type="text" /></td>
  242. </tr>
  243. <tr>
  244. <td>
  245. <h4>類型</h4>
  246. </td>
  247. <td><select id="chousetype">
  248. <option value="大樓">大樓</option>
  249. <option value="透天">透天</option>
  250. </select></td>
  251. </tr>
  252. <tr>
  253. <td>
  254. <h4>設計師</h4>
  255. </td>
  256. <td><input class="form-control" id="cdesigner" type="text" /></td>
  257. </tr>
  258. <tr>
  259. <td>
  260. <h4>設計空間</h4>
  261. </td>
  262. <td><textarea class="form-control" id="cspace" rows="2" type="text"></textarea></td>
  263. </tr>
  264. <tr>
  265. <td>
  266. <h4>地點</h4>
  267. </td>
  268. <td><select id="cloc">
  269. <option value="台北">台北</option>
  270. <option value="新北">新北</option>
  271. <option value="基隆">基隆</option>
  272. <option value="桃園">桃園</option>
  273. <option value="新竹">新竹</option>
  274. <option value="苗栗">苗栗</option>
  275. <option value="台中">台中</option>
  276. <option value="南投">南投</option>
  277. <option value="彰化">彰化</option>
  278. <option value="雲林">雲林</option>
  279. <option value="嘉義">嘉義</option>
  280. <option value="台南">台南</option>
  281. <option value="高雄">高雄</option>
  282. <option value="屏東">屏東</option>
  283. <option value="宜蘭">宜蘭</option>
  284. <option value="花蓮">花蓮</option>
  285. <option value="台東">台東</option>
  286. <option value="澎湖">澎湖</option>
  287. <option value="金門">金門</option>
  288. <option value="馬祖">馬祖</option>
  289. <option value="其他">其他</option>
  290. </select></td>
  291. </tr>
  292. <tr>
  293. <td>
  294. <h4>預算範圍</h4>
  295. </td>
  296. <td><select id="cbudgetr">
  297. <option value="59萬以下">59萬以下</option>
  298. <option value="60-79萬">60-79萬</option>
  299. <option value="80-99萬">80-99萬</option>
  300. <option value="100萬以上">100萬以上</option>
  301. </select></td>
  302. </tr>
  303. <tr>
  304. <td>
  305. <h4>詳細預算</h4>
  306. </td>
  307. <td><input class="form-control" id="cbudget" type="text" /></td>
  308. </tr>
  309. <tr>
  310. <td>
  311. <h4>建案名稱</h4>
  312. </td>
  313. <td><input class="form-control" id="cconstruction" type="text" /></td>
  314. </tr>
  315. <!-- <td>
  316. <h4>作品集圖片集1</h4>
  317. </td>
  318. <td>
  319. <div class="form-control" id="editorjs1" style='border:inset 1px;'></div>
  320. </td> -->
  321. <tr>
  322. <td>
  323. <h4>是否顯示</h4>
  324. </td>
  325. <td><input id="cdraft" type="checkbox" checked="true" /></td>
  326. </tr>
  327. <tr class="d-none">
  328. <td>
  329. <h4>Comment</h4>
  330. </td>
  331. <td>
  332. <input class="form-control" id="cnewcomment" type="file" />
  333. <div class="mt-1 text-danger">(建議尺寸/比例:寬 2048px * 高 1365px)</div>
  334. </td>
  335. </tr>
  336. </tbody>
  337. </table>
  338. <div class="d-none">
  339. <input id="ctype" type="text" /><br />
  340. <input id="curl" type="text" /><br />
  341. <input id="cimage" type="text" /><br />
  342. <input id="cweight" type="text" /><br />
  343. <input id="ctag" type="text" /><br />
  344. <input id="ctags" type="text" /><br />
  345. <input id="ccategories" type="text" /><br />
  346. <input id="ccol1" type="text" /><br />
  347. <input id="ccol2" type="text" /><br />
  348. <input id="ccoverimg" type="text" /><br />
  349. <input id="ccollslider" type="text" /><br />
  350. <input id="ccomment" type="text" /><br />
  351. <input id="cfile" type="text" /><br />
  352. <input id="cownerimg" type="text" /><br />
  353. </div>
  354. </div>
  355. <div class="modal-footer">
  356. <button type="button" id="uptbtn" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
  357. </div>
  358. </div>
  359. </div>
  360. </div>
  361. <script>
  362. </script>
  363. {% endblock %}