groups.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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;">binding groups</div>
  6. <div class="panel-body" style="padding-left: 8px;">
  7. host: <span class="green">{{ host.hostname }}</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>group</th>
  14. <th>creator</th>
  15. <th>operation</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {% for v in groups %}
  20. <tr>
  21. <td>{{ v.grp_name }}</td>
  22. <td>{{ v.create_user }}</td>
  23. <td>
  24. <button class="btn btn-default btn-xs"
  25. onclick="host_unbind_group('{{ host.id }}', '{{ v.id }}');">
  26. <span class="glyphicon glyphicon-trash"></span>
  27. Unbind
  28. </button>
  29. </td>
  30. </tr>
  31. {% else %}
  32. <tr>
  33. <td colspan="3">no records</td>
  34. </tr>
  35. {% endfor %}
  36. </tbody>
  37. </table>
  38. </div>
  39. <button class="btn btn-default" onclick="history.go(-1);">
  40. <span class="glyphicon glyphicon-arrow-left"></span>
  41. Back
  42. </button>
  43. {% endblock %}