diff --git a/config/packages/doctrine.yaml b/config/packages/doctrine.yaml index 22ccf54..01bea71 100644 --- a/config/packages/doctrine.yaml +++ b/config/packages/doctrine.yaml @@ -24,12 +24,6 @@ doctrine: dir: '%kernel.project_dir%/src/Entity' prefix: 'App\Entity' alias: App - Credits: - type: attribute - is_bundle: false - dir: '%kernel.project_dir%/src/Credits/Entity' - prefix: 'App\Credits\Entity' - alias: Credits controller_resolver: auto_mapping: false diff --git a/templates/admin/transactions.html.twig b/templates/admin/transactions.html.twig deleted file mode 100644 index 64f654d..0000000 --- a/templates/admin/transactions.html.twig +++ /dev/null @@ -1,36 +0,0 @@ -{% extends 'base.html.twig' %} - -{% block title %}Credit Transactions{% endblock %} - -{% block body %} -
| ID | -NPub | -Type | -Amount | -Reason | -Timestamp | -
|---|---|---|---|---|---|
| {{ tx.id }} | -{{ tx.npub|shortenNpub }} | -{{ tx.type }} | -{{ tx.amount }} | -{{ tx.reason ?: '—' }} | -{{ tx.createdAt|date('Y-m-d H:i:s') }} | -
| No transactions found. | -|||||