-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Place the portal template into a seperate file
- Loading branch information
1 parent
41220b3
commit 0c94a49
Showing
2 changed files
with
37 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Karby</title> | ||
<style> | ||
* { | ||
font-family: sans-serif; | ||
} | ||
div.expandable { | ||
display: none; | ||
} | ||
input:checked + label + div.expandable { | ||
display: block; | ||
} | ||
table, th, td { | ||
border: 1px solid black; border-collapse: collapse; | ||
} | ||
th, td { | ||
padding: 5px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<input type="checkbox" id="aggregated"><label for="aggregated">Show Aggregated Logs</label> | ||
<div class="expandable"> | ||
<%= aggregated %> | ||
</div> | ||
<hr> | ||
<input type="checkbox" id="parts"><label for="parts">Show Log Parts</label> | ||
<div class="expandable"> | ||
<%= parts %> | ||
</div> | ||
</body> | ||
</html> |