collections.html 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {% extends "layout.html" %}
  2. {% block main %}
  3. <h1 class="h3"><i class="fas fa-ruler-combined mr-2"></i>{{ title }}</h1>
  4. <table id="example" class="table" cellspacing="0" width="60%">
  5. <thead>
  6. <tr>
  7. <th>數量</th>
  8. <th>標題</th>
  9. <th>順序</th>
  10. <th>顯示</th>
  11. <th style="text-align:center;width:100px;">
  12. <button type="button" class="btn btn-primary btn-sm m-1" data-toggle="modal" data-target="#createModal">新增</button>
  13. </th>
  14. </tr>
  15. </thead>
  16. {% for idx in range(0, length) %}
  17. <tbody>
  18. <tr>
  19. <td>{{ idx }}</td>
  20. <td>{{ collections[idx].title }}</td>
  21. <td>1</td>
  22. <td>on</td>
  23. <td>
  24. <div>
  25. <a class="btn btn-secondary btn-sm m-1" href="{{ url_for('editor.editor', url=collections[idx].url) }}">編輯</a>
  26. <form action="{{ url_for('collections.remove', url=collections[idx].url) }}" method="POST">
  27. <input class="btn btn-danger" type="submit" value="Delete">
  28. </form>
  29. </div>
  30. </td>
  31. </tr>
  32. </tbody>
  33. =======
  34. <th style="text-align:center;width:140px;">新增 <button type="button" data-func="dt-add" class="btn btn-success btn-xs dt-add">
  35. <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
  36. </button></th>
  37. </tr>
  38. </thead>
  39. {% for idx in range(0, length) %}
  40. <tbody>
  41. <tr>
  42. <td class="table__data">{{ idx }}</td>
  43. <td class="table__data">{{ collections[idx].title }}</td>
  44. <td class="table__data">1</td>
  45. <td class="table__data">on</td>
  46. <td>
  47. <div class="d-flex justify-content-center">
  48. <a class="m-1 btn__edit" href="{{ url_for('editor.editor', url=collections[idx].url) }}"><i class="fas fa-edit"></i></a>
  49. <form action="{{ url_for('editor.remove', url=collections[idx].url) }}" method="POST" class="m-1 inline_block">
  50. <button class="btn__delete" type="submit" value="delete"><i class="fas fa-trash-alt"></i></button>
  51. </form>
  52. </div>
  53. </td>
  54. </tr>
  55. </tbody>
  56. >>>>>>> adjust table layout in collections
  57. {% endfor %}
  58. </table>
  59. <!-- Modal -->
  60. <div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-labelledby="createModalLabel" aria-hidden="true">
  61. <div class="modal-dialog" role="document">
  62. <div class="modal-content">
  63. <div class="modal-header">
  64. <h5 class="modal-title" id="createModalLabel">Create new content</h5>
  65. </div>
  66. <form action="{{ url_for('collections.create') }}" method="POST" enctype="multipart/form-data">
  67. <div class="form-group">
  68. {{ form.title.label(class="form-control-label") }}
  69. {{ form.title(class="form-control form-control-lg") }}
  70. {{ form.image.label(class="form-control-label") }}
  71. {{ form.image(class="form-control form-control-lg") }}
  72. {{ form.description.label(class="form-control-label") }}
  73. {{ form.description(class="form-control form-control-lg") }}
  74. </div>
  75. <div class="modal-footer">
  76. <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
  77. <input class="btn btn-primary" type="submit" value="Create">
  78. </div>
  79. </form>
  80. </div>
  81. </div>
  82. </div>
  83. {% endblock main %}