web2py / py4web

Other
258 stars 127 forks source link

Update _default/index.html #888

Closed nicozanf closed 3 months ago

nicozanf commented 3 months ago

Mainly typos. Also changes to using f-strings which is more user friendly than .format syntax

i.e. message = "Hello {first_name}".format(**user) --> message = f"Hello {user['first_name']}"