diff --git a/app/api/services/account.py b/app/api/services/account.py index c9f6d7a..00948b8 100644 --- a/app/api/services/account.py +++ b/app/api/services/account.py @@ -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)