objects.tpl 1.0 KB

1234567891011121314151617181920212223242526272829
  1. {{ define "objects" }}
  2. {{ template "header" .}}
  3. <div id="wrapper">
  4. {{ template "navigation" .}}
  5. <!-- Page Content -->
  6. <div id="page-wrapper">
  7. <div class="container-fluid">
  8. <div class="row">
  9. <div class="col-lg-12">
  10. <h1 class="page-header">{{.Title}}</h1>
  11. <div id="objectGrid" style="height: 440px;" class="ag-fresh"></div>
  12. <br />
  13. <button type="button" class="btn btn-outline btn-primary" onclick="onInsertRow()">Insert Row</button>&nbsp;
  14. <button type="button" class="btn btn-outline btn-warning" onclick="onRemoveSelected()">Remove Selected</button>
  15. </div>
  16. <!-- /.col-lg-12 -->
  17. </div>
  18. <!-- /.row -->
  19. </div>
  20. <!-- /.container-fluid -->
  21. </div>
  22. <!-- /#page-wrapper -->
  23. </div>
  24. <!-- /#wrapper -->
  25. {{ template "footer" .}}
  26. {{ end }}