forked from genepi/cloudgene3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
221482a
commit 2400f39
Showing
2 changed files
with
53 additions
and
7 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
31 changes: 29 additions & 2 deletions
31
src/main/html/webapp/components/admin/settings/logs/logs.stache
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 |
---|---|---|
@@ -1,6 +1,33 @@ | ||
<h2>Logs</h2> | ||
|
||
<h4>logs/cloudgene.log</h4> | ||
<div class="log-container"> | ||
<input type="text" id="log-search" class="form-control" placeholder="Search in logs..."> | ||
<h4>logs/cloudgene.log</h4> | ||
<pre id="log-cloudgene" class="scrollable-log"></pre> | ||
</div> | ||
|
||
<pre id="log-cloudgene"></pre> | ||
<style> | ||
.scrollable-log { | ||
max-height: 500px; | ||
overflow-y: auto; | ||
background-color: #f5f5f5; | ||
padding: 10px; | ||
border: 1px solid #ddd; | ||
border-radius: 4px; | ||
} | ||
|
||
.highlight { | ||
background-color: yellow; | ||
padding: 2px 0; | ||
} | ||
|
||
.log-container { | ||
margin: 20px 0; | ||
} | ||
|
||
#log-search { | ||
margin-bottom: 15px; | ||
width: 300px; | ||
} | ||
</style> | ||
|