Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/resources/webapp/template/common/include.ftl.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
<meta name="author" content="">
<link rel="shortcut icon" href="images/zookeeper.ico" type="image/x-icon">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="https://unpkg.com/bootstrap-table@1.22.1/dist/bootstrap-table.min.css" rel="stylesheet">
<link href="css/zkacd.css" rel="stylesheet">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="https://unpkg.com/bootstrap-table@1.22.1/dist/bootstrap-table.min.js"></script>
<script src="js/home.js"></script>
13 changes: 9 additions & 4 deletions src/main/resources/webapp/template/home.ftl.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
-->
<#import "layouts/main-layout.ftl.html" as main>
<@main.page>
<style>
.checkbox_col{
width: 4%;
}
</style>

<div class="container">
<form method="post" action="/home">
Expand Down Expand Up @@ -62,12 +67,12 @@

</div>
<div class="col-md-9 pre-scrollable scroll-pane">
<table class="table table-striped table-bordered wrap-table">
<table class="table table-striped table-bordered wrap-table" data-toggle="table">
<thead>
<tr>
<th style="width: 4%"></th>
<th>Name</th>
<th>Value</th>
<th class="checkbox_col"></th>
<th data-sortable="true">Name</th>
<th data-sortable="true">Value</th>
</tr>
</thead>
<tbody>
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/webapp/template/search.ftl.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ <h3>Search Results</h3>
<div class="col-md-12 text-center">


<table class="table table-striped table-bordered wrap-table">
<table class="table table-striped table-bordered wrap-table" data-toggle="table">
<thead>
<tr>
<th>Path</th>
<th>Name</th>
<th>Value</th>
<th data-sortable="true">Path</th>
<th data-sortable="true">Name</th>
<th data-sortable="true">Value</th>
</tr>
</thead>
<tbody>
Expand Down