Freelance Earnings Tracker

Paid

Saved earnings

""" for row in earnings: date = row[0] time_spent = row[1] per_hour_value = row[2] total_us_earnings = row[3] approx_uk_earnings = row[4] project_family = row[5] paid = "Yes" if row[6] == 1 else "No" html += f""" """ html += """
Date Minutes $/hour Total USD Approx GBP Project family Paid
{date} {time_spent} {per_hour_value:.2f} {total_us_earnings:.2f} {approx_uk_earnings:.2f} {project_family} {paid}