roles.html 996 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
  4. <style>
  5. a{
  6. color: #009688;
  7. }
  8. a:hover{
  9. color: #004a43;
  10. text-decoration: underline;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <div class="timo-detail-page">
  16. <table class="layui-table">
  17. <thead>
  18. <tr>
  19. <th>角色名</th>
  20. <th>角色描述</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <tr th:each="item:${list}">
  25. <td>[[${item.name}]]</td>
  26. <td>[[${item.description}]]</td>
  27. </tr>
  28. <tr th:if="${list.isEmpty()}">
  29. <td style="text-align: center" colspan="3">本资源没有分配给任何角色</td>
  30. </tr>
  31. </tbody>
  32. </table>
  33. </div>
  34. <script th:replace="/common/template :: script"></script>
  35. </body>
  36. </html>