Remove unnecessary fields from trade response

This commit is contained in:
2022-12-02 07:20:37 +00:00
parent 62476e5da3
commit b3bacde8df
2 changed files with 5 additions and 2 deletions

View File

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