123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- {% extends "tables/editor_table.html" %}
- {% block table_body %}
- <script src="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest"></script>
- <script src="https://cdn.jsdelivr.net/npm/@editorjs/image@latest"></script><!-- Image -->
- <script type="text/javascript" src="/static/js/yo.js"></script>
- {% for idx in range(0, length) %}
- {% if collections[idx].url != '/collection' %}
- <tbody>
- <tr>
- <td class="table__data">{{ idx + 1 }}</td>
- <td class="table__data">{{ collections[idx].title }}</td>
- <td class="table__data">{{ collections[idx].date }}</td>
- <!-- <td class="table__data">1</td> -->
- <td class="table__data"><input type="checkbox" {{ 'checked' if (collections[idx].draft.lower()=='false' ) }}
- onclick="toggleDraft(this,'{{ collections[idx].url }}');" /></td>
- <td>
- <div class="d-flex justify-content-center">
- <button class="btn btn_light mr-1" onclick="getHeader('{{ collections[idx].url }}');"><b>主資訊</b> <i
- class="fas fa-pencil-alt"></i></button>
- <a class="m-1 btn__edit" href="{{ url_for('editor.editor', url=collections[idx].url) }}"><i
- class="fas fa-edit"></i></a>
- <form action="{{ url_for('collections.remove', url=collections[idx].url) }}" method="POST" method="POST"
- class="m-1 inline_block">
- <button class="btn__delete" type="submit" value="delete" onclick="return confirm('確定要刪除此作品?');"><i
- class="fas fa-trash-alt"></i></button>
- </form>
- </div>
- </td>
- </tr>
- </tbody>
- {% endif %}
- {% endfor %}
- {% endblock table_body %}
- <!-- Modal -->
- {% block modal_body %}
- <form action="{{ url_for('collections.create') }}" method="POST" enctype="multipart/form-data">
- <div class="form-group">
- {{ form.title.label(class="form-control-label modal__label mb-1") }} <span class="text-danger">(建議字數: 15字內)</span>
- {{ form.title(class="form-control form-control-lg") }}
- {{ form.image.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議尺寸/比例:
- 寬2048px * 高1365px)</span>
- {{ form.image(class="form-control form-control-lg modal__file") }}
- {{ form.description.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議字數:
- 50字內)</span>
- {{ form.description(class="form-control form-control-lg textarea") }}
- </div>
- <div class="modal-footer pb-0 border-0">
- <button type="button" class="btn btn__cancel" data-dismiss="modal">取消</button>
- <input class="btn btn__submitadd" type="submit" value="完成">
- </div>
- </form>
- {% endblock modal_body %}
- {% block main_info_modal_body %}
- <div class="modal fade" id="myModal">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header">
- <h4 class="modal-title">作品集-主資訊修改</h4>
- <button type="button" class="close" data-dismiss="modal">×</button>
- </div>
- <div class="modal-body">
- <table class="table table-bordered">
- <tbody>
- <tr>
- <td>
- <h4>標題</h4>
- </td>
- <td><input class="form-control" id="ctitle" type="text" />
- <div class="mt-1 text-danger">(建議字數: 15字內)</div>
- </td>
- </tr>
- <tr>
- <td>
- <h4>圖片</h4>
- </td>
- <td>
- <input class="form-control" id="cfile" type="file" />
- <div class="mt-1 text-danger">(建議尺寸/比例: 寬2048px * 高1365px)</div>
- </td>
- </tr>
- <tr id='sdesc'>
- <td>
- <h4>描述</h4>
- </td>
- <td><textarea class="form-control" rows="3" id="cdescription"></textarea>
- <div class="mt-1 text-danger">(建議字數: 50字內)</div>
- </td>
- </tr>
- <tr>
- <td>
- <h4>日期</h4>
- </td>
- <td><input class="form-control" id="cdate" type="text" /></td>
- </tr>
- <tr>
- <td>
- <h4>屋型</h4>
- </td>
- <td><select id="thousetype">
- <option value="">屋型</option>
- <option>透天</option>
- <option>大樓</option>
- </select></td>
- </tr>
- <tr>
- <td>
- <h4>坪數</h4>
- </td>
- <td><select id="tpinsize">
- <option value="">坪數</option>
- <option>19坪以下</option>
- <option>20-29坪</option>
- <option>30-39坪</option>
- <option>40坪以上</option>
- </select></td>
- </tr>
- <tr>
- <td>
- <h4>預算</h4>
- </td>
- <td><select id="tbudget">
- <option value="">預算</option>
- <option>45-59萬</option>
- <option>60-79萬</option>
- <option>80-99萬</option>
- <option>100萬以上</option>
- </select></td>
- </tr>
- <tr>
- <td>
- <h4>格局</h4>
- </td>
- <td><select id="troomscount">
- <option value="">格局</option>
- <option>兩房</option>
- <option>三房</option>
- <option>四房</option>
- <option>四房以上</option>
- </select></td>
- </tr>
- <tr>
- <td>
- <h4>是否顯示</h4>
- </td>
- <td><input id="cdraft" type="checkbox" checked="true" /></td>
- </tr>
- </tbody>
- </table>
- <div class="d-none">
- <input id="ctype" type="text" /><br />
- <input id="curl" type="text" /><br />
- <input id="cimage" type="text" /><br />
- <input id="cweight" type="text" /><br />
- <input id="ctag" type="text" /><br />
- <input id="ctags" type="text" /><br />
- <input id="ccategories" type="text" /><br />
- <input id="ccol1" type="text" /><br />
- <input id="ccol2" type="text" /><br />
- </div>
- </div>
- <div class="modal-footer">
- <button type="button" id="uptbtn" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
- </div>
- </div>
- </div>
- </div>
- {% endblock %}
|