Files
origo/templates/dash-body.html
2026-03-22 17:45:37 -04:00

35 lines
1009 B
HTML

<section role="main" id="dashboard">
<div class="dashboard-container">
<h1 class="page-title">Dashboard</h1>
<div id="dashboard-links">
<h4>Actions</h4>
<ul id="dash-menu">
<li><a href="/planner" class="btn btn-primary"><span class="material-symbols-outlined">edit_calendar</span>Planner</a></li>
<li><a href="/user-logout" class="btn btn-accent"><span class="material-symbols-outlined">logout</span>Logout</a></li>
</ul>
</div>
<div id="pageviews">
<h2>Pageviews</h2>
<div class="table-wrapper">
<table class="data-table">
<thead>
<tr>
<th>Title</th>
<th>Page</th>
<th>Referrer</th>
<th>IP</th>
<th>Language</th>
<th>Screen</th>
<th>Timestamp</th>
</tr>
</thead>
<tbody>
{{ pageview_rows }}
</tbody>
</table>
</div>
</div>
</div>
</section>