18 lines
No EOL
561 B
Django/Jinja
18 lines
No EOL
561 B
Django/Jinja
<div id="debug-panel">
|
|
<Card class_extra="mt-4">
|
|
<div class="flex items-center justify-between mb-3">
|
|
<h3 class="font-semibold text-sm">Debug : <code>{{ pc_id }}</code></h3>
|
|
<Button
|
|
label="✕ Fermer"
|
|
variant="ghost"
|
|
hx_get="/admin/list"
|
|
hx_target="#main-content"
|
|
/>
|
|
</div>
|
|
{% if error %}
|
|
<Alert message="{{ error }}" type="error" />
|
|
{% else %}
|
|
<pre class="bg-base-200 rounded p-3 text-xs overflow-auto max-h-80">{{ data | tojson(indent=2) }}</pre>
|
|
{% endif %}
|
|
</Card>
|
|
</div> |