collections.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. <form action="{{ url_for('editor.remove', url=collection.url) }}" method="POST">
  25. <input class="btn btn-danger" type="submit" value="Delete">
  26. </form>
  27. </div>
  28. </td>
  29. </tr>
  30. </tbody>
  31. {% endfor %}
  32. </table>
  33. {% endblock main %}