mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-27 11:07:10 +02:00
15 lines
493 B
HTML
15 lines
493 B
HTML
{% extends "layouts/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% translate 'Deleted transactions' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="tw:container tw:px-md-3 tw:py-3 tw:column-gap-5">
|
|
<div class="tw:text-3xl tw:font-bold tw:font-mono tw:w-full tw: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 %}
|