Commit Graph

3 Commits

Author SHA1 Message Date
Wojciech Kwolek b18dfd81a5 add API key management 2021-11-19 13:19:42 +00:00
Wojciech Kwolek a92a125154 [fix] allow 0 as start of day
fixes #1
2021-11-17 20:08:55 +00:00
Wojciech Kwolek cc6e0efab8 Implement timezones and start of day. (#11)
add a script to pre-fill the timezone on the registration page

add created_on, copy values from accomplishment.time, normalize accomplishment.time

make the start_of_day and timezone migration work on pre-existing databases

Switched the code to use the Day class everywhere.

* Removed timeutils.py.
* Added from_str method to the Day class.
* Implemented __add__ and __sub__ operators for the Day class.
  You can now get the next day by writing `day + 1` (or any other
  integer.)
* Fixed Day.today: it used to take the "self" argument, despite being
  a static method.
* Made the settings view use pytz.all_timezones instead of
  pytz.common_timezones, to make sure everyone's included.

Made Day class aware of the user's settings.

It now takes the start-of-day hour and the timezone from the user's
profile.

Moreover, equality and comparison operators were implemented, as well as
__repr__.

Implemented is_today and is_future.

implement saving the settings form

Added settings templates + cosmetics

* Refactored render_field to support SelectFields to avoid code
  duplication
* Introduced the /settings route, the logic for which the logic is not
  yet implemented
* Fixed missing > in one of the favicon <link>s in <head>
* Added a Home and Settings link to the navigation area in the header
* Made the card width consistent (login/logout/register used to be less
  wide than the other views)
* Centered the "Are you sure you want to log out?" text

added timezone selector to registration

basic implementation for getting the current day for the user

initial implementation of the new Day class

Co-authored-by: Wojciech Kwolek <wojciech@kwolek.xyz>
Reviewed-on: https://git.r23s.eu/wojciech/doneth.at-backend/pulls/11
2020-09-26 16:32:37 +00:00