summaryrefslogtreecommitdiffhomepage
path: root/templates/mle.html
blob: b7bc632522602e604c7d5c763a09e1ebee916838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!-- metrics.html, 
  -- Copyright (C) 2025 Private Island Networks Inc. 
-->
{% extends "base.html" %}
{% block content %}

	<div id="mc-mode-box">
		<p>
			Viewing Mode: <span id="mc-mode">{{mode}}</span>
		</p>
		<input type="radio" id="mc-mode-live" class="mc-mode" name="mode"
			value="live" checked /> <label for="live">Live</label> <input
			type="radio" id="mc-mode-file" class="mc-mode" name="mode"
			value="file" /> <label for="file">File</label> <input type="file"
			id="mc-filename" name="filename" accept=".pcapng">
		<button id="mc-start" class="mc-action"
			style="background-color: green" data-action="start">Start</button>
		<button id="mc-stop" class="mc-action" style="background-color: red"
			data-action="stop">Stop</button>
		<button id="mc-help" class="mc-action" style="background-color: blue"
			data-action="help">Help</button>
		<button id="mc-clear" class="mc-action"
			style="background-color: yellow; color: black;" data-action="clr">Clear</button>
	</div>

	<br>

	<div id="mc-log-hdr">
		<div class="mc-log-col mc-log-col-time"
			style="border: 0px solid green;">Time</div>
		<div class="mc-log-col mc-log-col-pc"
			style="border: 0px solid green;">PHY0</div>
		<div class="mc-log-col mc-log-col-phy0"
			style="border: 0px solid green;">PHY1</div>
		<div class="mc-log-col mc-log-col-phy1"
			style="border: 0px solid green;">PHY2</div>
	</div>

	<div id="mc-log">
		<!-- Log Entries are Inserted Here -->
	</div>

		
{% endblock %}	

Highly Recommended Verilog Books