diff --git a/core/templates/partials/strategy-list.html b/core/templates/partials/strategy-list.html index 9118f49..d7488ef 100644 --- a/core/templates/partials/strategy-list.html +++ b/core/templates/partials/strategy-list.html @@ -12,6 +12,7 @@ hx-get="{{ list_url }}"> id + user name description account @@ -21,6 +22,7 @@ {% for item in object_list %} {{ item.id }} + {{ item.user }} {{ item.name }} {{ item.description|truncatechars:80 }} {{ item.account }} diff --git a/core/templates/partials/trade-list.html b/core/templates/partials/trade-list.html index 359681b..0502ff7 100644 --- a/core/templates/partials/trade-list.html +++ b/core/templates/partials/trade-list.html @@ -12,6 +12,7 @@ hx-get="{{ list_url }}"> id + user status account id symbol @@ -25,6 +26,7 @@ {% for item in object_list %} {{ item.id }} + {{ item.user }} {{ item.status }} {{ item.account.id }} {{ item.symbol }}