collections.html 957 B

12345678910111213141516171819202122232425262728293031
  1. {% extends "layout.html" %}
  2. {% block main %}
  3. <h1>規劃作品</h1>
  4. <table id="example" class="table table-striped table-bordered" cellspacing="0" width="60%">
  5. <thead>
  6. <tr>
  7. <th>數量</th>
  8. <th>標題</th>
  9. <th>順序</th>
  10. <th style="text-align:center;width:100px;">新增 <button type="button" data-func="dt-add" class="btn btn-success btn-xs dt-add">
  11. <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
  12. </button></th>
  13. </tr>
  14. </thead>
  15. {% for collection in collections %}
  16. <tbody>
  17. <tr>
  18. <td>1</td>
  19. <td>{{ collection.title }}</td>
  20. <td>1</td>
  21. <td>
  22. <div>
  23. <a class="btn btn-secondary btn-sm m-1" href="{{ url_for('editor.editor', url=collection.url) }}">編輯</a>
  24. <a class="btn btn-secondary btn-sm m-1" href="#">刪除</a>
  25. </div>
  26. </td>
  27. </tr>
  28. </tbody>
  29. {% endfor %}
  30. </table>
  31. {% endblock main %}