feat: The Other Dude v9.0.1 — full-featured email system

ci: add GitHub Pages deployment workflow for docs site

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jason Staack
2026-03-08 17:46:37 -05:00
commit b840047e19
511 changed files with 106948 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
{% extends "reports/base.html" %}
{% block content %}
<div class="date-range">
Report period: {{ date_from }} to {{ date_to }}
</div>
<div class="summary-box">
<div class="summary-stat">
<div class="value">{{ total_entries }}</div>
<div class="label">Total Changes</div>
</div>
<div class="summary-stat">
<div class="value">{{ data_source }}</div>
<div class="label">Data Source</div>
</div>
</div>
{% if entries %}
<h2 class="section-title">Change Log</h2>
<table>
<thead>
<tr>
<th>Timestamp</th>
<th>User</th>
<th>Action</th>
<th>Device</th>
<th>Details</th>
</tr>
</thead>
<tbody>
{% for entry in entries %}
<tr>
<td>{{ entry.timestamp }}</td>
<td>{{ entry.user or '-' }}</td>
<td>{{ entry.action }}</td>
<td style="font-weight: 600;">{{ entry.device or '-' }}</td>
<td>{{ entry.details or '-' }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<div class="no-data">No changes found for the selected date range.</div>
{% endif %}
{% endblock %}