Fix CRUD for accounts and trades

This commit is contained in:
Mark Veidemanis 2022-10-17 19:06:09 +01:00
parent 2bafdf0910
commit e2a697dcc1
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
6 changed files with 41 additions and 41 deletions

View File

@ -1,8 +1,8 @@
# Generated by Django 4.1.2 on 2022-10-17 17:18 # Generated by Django 4.1.2 on 2022-10-17 17:18
import django.db.models.deletion
from django.conf import settings from django.conf import settings
from django.db import migrations, models from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration): class Migration(migrations.Migration):

View File

@ -1,7 +1,7 @@
# Generated by Django 4.1.2 on 2022-10-17 17:39 # Generated by Django 4.1.2 on 2022-10-17 17:39
from django.db import migrations, models
import django.db.models.deletion import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):

View File

@ -17,4 +17,3 @@
{% include 'partials/notify.html' %} {% include 'partials/notify.html' %}
{% include 'partials/account-list.html' %} {% include 'partials/account-list.html' %}

View File

@ -17,4 +17,3 @@
{% include 'partials/notify.html' %} {% include 'partials/notify.html' %}
{% include 'partials/trade-list.html' %} {% include 'partials/trade-list.html' %}

View File

@ -11,7 +11,7 @@ from serde import ValidationError
from core.forms import AccountForm from core.forms import AccountForm
from core.lib.serde import drakdoo from core.lib.serde import drakdoo
from core.models import Callback, Account from core.models import Account, Callback
from core.util import logs from core.util import logs
log = logs.get_logger(__name__) log = logs.get_logger(__name__)
@ -97,7 +97,9 @@ class AccountAction(LoginRequiredMixin, APIView):
if account_id: if account_id:
try: try:
form = AccountForm(request.data, instance=account.objects.get(id=account_id)) form = AccountForm(
request.data, instance=account.objects.get(id=account_id)
)
except account.DoesNotExist: except account.DoesNotExist:
message = "Account does not exist" message = "Account does not exist"
message_class = "danger" message_class = "danger"

View File

@ -11,7 +11,7 @@ from serde import ValidationError
from core.forms import TradeForm from core.forms import TradeForm
from core.lib.serde import drakdoo from core.lib.serde import drakdoo
from core.models import Callback, Trade, Account from core.models import Account, Callback, Trade
from core.util import logs from core.util import logs
log = logs.get_logger(__name__) log = logs.get_logger(__name__)