adds activity indicators in header (ugly af)
This commit is contained in:
@@ -67,7 +67,7 @@
|
||||
<table id="logFilesTable" class="table table-striped table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="2%"><input type="checkbox" id="checkAllLog" onclick="checkAllCheckboxes('logFilesTable', 'checkAllLog')"></th>
|
||||
<th width="2%"><input type="checkbox" id="checkAllLog" class="form-check-input" onclick="checkAllCheckboxes('logFilesTable', 'checkAllLog')"></th>
|
||||
<th onclick="sortTable(1, 'logFilesTable')">File Name</th>
|
||||
<th onclick="sortTable(2, 'logFilesTable')">Last Modified</th>
|
||||
<th onclick="sortTable(3, 'logFilesTable')">Created</th>
|
||||
|
||||
@@ -15,9 +15,25 @@
|
||||
</div>
|
||||
</nav>
|
||||
<div id="status_container" class="container-fluid d-flex justify-content-center">
|
||||
<div class="d-flex m-2" id="navbarNav">
|
||||
<div id="activity_indicator" class="badge text-bg-danger fw-bold m-1">Inactive</div>
|
||||
<div id="server_time" class="badge text-bg-secondary m-1"></div>
|
||||
<div id="end_time" class="badge text-bg-info d-none m-1"></div>
|
||||
<div class="container-md my-1 shadow p-4 pb-0 m-1 w-50" id="status_badges">
|
||||
<div id="loading_indicator" class="alert alert-info">Loading...</div>
|
||||
<div id="status_content">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col col-6 p-1">
|
||||
<div id="activity_indicator" class="alert alert-danger fw-bolder">Inactive</div>
|
||||
</div>
|
||||
<div class="col col-6 p-1">
|
||||
<div id="server_time" class="alert alert-primary">Server Time (TCT):</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
<div class="col col-6 p-1">
|
||||
<div id="end_time" class="alert alert-info">Running until:</div>
|
||||
</div>
|
||||
<div class="col p-1">
|
||||
<div id="time-left" class="alert alert-info">Time Left:</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,3 +1,3 @@
|
||||
{{ bootstrap.load_js() }}
|
||||
<script src="{{url_for('static', filename='color_mode.js')}}"></script>
|
||||
<script src="{{ url_for('static', filename='common.js') }}"></script>
|
||||
<script type="module" src="{{ url_for('static', filename='common.js') }}"></script>
|
||||
@@ -30,5 +30,5 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<script src="{{url_for('static', filename='index.js')}}"></script>
|
||||
<script type="module" src="{{url_for('static', filename='index.js')}}"></script>
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user