sort the currencies on the monitor

This commit is contained in:
2021-01-08 07:18:16 +01:00
parent 5db3c58505
commit 86d1d2cd80
+1 -1
View File
@@ -7,7 +7,7 @@ from apps.monitor.calc import Calc
@login_required
def monitor(request):
transactions = Transaction.objects.filter(owner=request.user)
crypto_currencies = {tr.crypto_currency for tr in transactions}
crypto_currencies = sorted({tr.crypto_currency for tr in transactions})
cryptos = []
total_investment = 0
current_value = 0