mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-31 14:33:39 +02:00
15 lines
475 B
HTML
15 lines
475 B
HTML
{% extends "layouts/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% translate 'Deleted transactions' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container px-md-3 py-3 column-gap-5">
|
|
<div class="tw-text-3xl fw-bold font-monospace tw-w-full mb-3">
|
|
<div>{% translate 'Deleted transactions' %}</div>
|
|
</div>
|
|
|
|
<div hx-get="{% url 'transactions_trash_list' %}" hx-trigger="load, updated from:window" class="show-loading"></div>
|
|
</div>
|
|
{% endblock %}
|