templates.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 templates</div>
  6. <div class="panel-body" style="padding-left: 8px;">
  7. host: <span class="green">{{ h.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>name</th>
  14. <th>parent</th>
  15. <th>creator</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {% for v in templates %}
  20. <tr>
  21. <td>
  22. <a target="_blank" href="{{ url_for('template_view_get', tpl_id=v.id) }}">{{ v.tpl_name }}</a>
  23. </td>
  24. <td>
  25. {% if v.parent %}
  26. <a target="_blank" href="{{ url_for('template_view_get', tpl_id=v.parent.id) }}">
  27. {{ v.parent.tpl_name }}
  28. </a>
  29. {% endif %}
  30. </td>
  31. <td>{{ v.create_user }}</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. <button class="btn btn-default" onclick="history.go(-1);">
  42. <span class="glyphicon glyphicon-arrow-left"></span>
  43. Back
  44. </button>
  45. {% endblock %}