groups.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {% extends "portal/layout.html" %}
  2. {% block content %}
  3. <div class="panel panel-default">
  4. <!-- Default panel contents -->
  5. <div class="panel-heading" style="padding-left: 8px;">host groups</div>
  6. <div class="panel-body" style="padding-left: 8px;">
  7. template: <span class="green">{{ data.tpl.tpl_name }}</span>
  8. </div>
  9. <!-- Table -->
  10. <table class="table table-hover table-bordered table-striped" style="margin-bottom: 0px; margin-top: 0px;">
  11. <thead>
  12. <tr>
  13. <th>name</th>
  14. <th>creator</th>
  15. <th>operation</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {% for v in data.gs %}
  20. <tr>
  21. <td>{{ v.grp_name }}</td>
  22. <td>
  23. <a target="_blank"
  24. href="/user/about/{{ v.create_user }}">{{ v.create_user }}</a>
  25. </td>
  26. <td>
  27. <a href="javascript:tpl_unbind_group('{{ data.tpl.id }}', '{{ v.id }}');"
  28. style="text-decoration: none;">
  29. <span class="glyphicon glyphicon-trash orange"></span>
  30. </a>
  31. </td>
  32. </tr>
  33. {% else %}
  34. <tr>
  35. <td colspan="3">no records</td>
  36. </tr>
  37. {% endfor %}
  38. </tbody>
  39. </table>
  40. </div>
  41. <div class="mt20 mb20">
  42. <button class="btn btn-default" onclick="history.go(-1);">
  43. <span class="glyphicon glyphicon-arrow-left"></span>
  44. <span>Back</span>
  45. </button>
  46. </div>
  47. {% endblock %}