Sun styles

This commit is contained in:
CHIEFSOFT\ameye
2025-08-30 08:41:05 -04:00
parent 8e1c841379
commit 037ef64694
+3 -1
View File
@@ -56,10 +56,12 @@ class AccountService(BaseService):
if option_name is not None and option_name != "":
next_bill = f"Bill: {member_data.next_billing}"
view_sub = "Account"
bill_style=" next_billing "
else:
option_name = "Free Trial"
next_bill = "End: 10/10/202"
view_sub = "Upgrade Account"
bill_style = " billing "
contacts_count =0 # random.randint(0, 10)
appointments_count =0
@@ -77,7 +79,7 @@ class AccountService(BaseService):
"value": site_traffic_count, "data_span": 'Past 12 hours', "link": "/reports/traffic", "extra_style": ''},
{"id": "4", "description": view_sub, "last_update": "10-12-2010 11:30 AM",
"value": option_name, "data_span": next_bill, "link": "/subscription",
"extra_style": " billing "}
"extra_style": bill_style}
]
}
return ResponseHelper.success(data=bar_data)