Remove unnecessary fields from trade response

Mark Veidemanis 1 year ago
parent 62476e5da3
commit b3bacde8df
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -29,7 +29,7 @@
</thead> </thead>
<tbody> <tbody>
{% for key, item in db_info.items %} {% for key, item in db_info.items %}
{% if key == 'instruments' %} {% if key == 'response' %}
<tr> <tr>
<th>{{ key }}</th> <th>{{ key }}</th>
<td> <td>

@ -50,12 +50,15 @@ class TradeAction(LoginRequiredMixin, OTPRequiredMixin, View):
if type == "page": if type == "page":
type = "modal" type = "modal"
db_info = db_info.__dict__
del db_info["_state"]
del db_info["_original"]
context = { context = {
"title": f"Trade info ({type})", "title": f"Trade info ({type})",
"unique": unique, "unique": unique,
"window_content": self.window_content, "window_content": self.window_content,
"type": type, "type": type,
"db_info": db_info.__dict__, "db_info": db_info,
"live_info": live_info, "live_info": live_info,
} }

Loading…
Cancel
Save