Files
boxdrop/templates/dashboard.html
2026-02-25 21:27:34 -05:00

26 lines
794 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block title %}Dashboard BoxDrop{% endblock %}
{% block content %}
<h1>Dashboard</h1>
<p>This page is only visible to authenticated users.</p>
<table style="border-collapse:collapse;width:100%">
<thead>
<tr style="background:#f4f4f4">
<th style="text-align:left;padding:0.5rem 1rem;border:1px solid #ddd">Claim</th>
<th style="text-align:left;padding:0.5rem 1rem;border:1px solid #ddd">Value</th>
</tr>
</thead>
<tbody>
{% for key, value in user.items() %}
<tr>
<td style="padding:0.5rem 1rem;border:1px solid #ddd"><code>{{ key }}</code></td>
<td style="padding:0.5rem 1rem;border:1px solid #ddd">{{ value }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}