summaryrefslogtreecommitdiffhomepage
path: root/templates/mdio.html
diff options
context:
space:
mode:
authorPrivate Island Networks Inc <opensource@privateisland.tech>2026-03-03 15:56:53 -0500
committerPrivate Island Networks Inc <opensource@privateisland.tech>2026-03-03 15:56:53 -0500
commitab6ca080771b706a310ebfd8a4192841cdfef05c (patch)
treef9da21650402f17330d68bb7d6f86b031191ddb9 /templates/mdio.html
initial commit of experimental code base for PI Explorer (PI-EXP)HEADmain
Diffstat (limited to 'templates/mdio.html')
-rw-r--r--templates/mdio.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/mdio.html b/templates/mdio.html
new file mode 100644
index 0000000..1a7bfb0
--- /dev/null
+++ b/templates/mdio.html
@@ -0,0 +1,44 @@
+<!-- mdio.html, Copyright (C) 2025 Private Island Networks Inc. -->
+{% extends "base.html" %}
+{% block content %}
+
+<h2>MDIO PHY0</h2>
+<div class="mc-ss-main-panel">
+ <table class="mc-ss-table mc-table-striped">
+ <thead>
+ <tr>
+ <th class="mc-sortable" data-field="address">Address</th>
+ <th class="mc-sortable" data-field="register">Register</th>
+ <th class="mc-sortable" data-field="default">Default</th>
+ <th class="mc-sortable" data-field="value">Value</th>
+ <th class="mc-mdio-buttons mc-ss-table-col-buttons"><a
+ id="mc-ss-reload-all" class="mc-icon" data-action="reload"
+ title="reload"> <img
+ src="/static/images/icons-svg/refresh-black.svg" alt="reload"></a></th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for key, value in regs.items() %}
+ <tr>
+ <td>{{ key }}</td>
+ <td>{{regs[key][0]}}</td>
+ <td>{{regs[key][1]}}</td>
+ <td class="mc-values"></td>
+ <td>
+ <div class="mc-icons">
+ <a class="mc-icon" data-action="edit" title="edit"><img
+ src="/static/images/icons-svg/edit-black.svg" alt="edit"></a><a
+ class="mc-icon" data-action="admin" title="admin"><img
+ src="/static/images/icons-svg/gear-black.svg" alt="admin"></a>
+ </div>
+ </td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+</div>
+<br>
+
+{% endblock %}
+
+

Highly Recommended Verilog Books