-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodos
32 lines (24 loc) · 1.18 KB
/
todos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
NEXT STEPS
DONE->>> SAVE/ADD user to db
DONE (partially)->>> AUTHENTICATE user (also use session cookie to keep user logged in)
DONE->>> (also use session cookie to keep user logged in)
DONE->>> LOGOUT USER
DONE->>> make sure all pages check for session cookie
DONE->>> add search to pull up movie
DONE->>> rate returned movie see/no see
I'm not going to bother implementing a "Add/Rate Movie" option as
that is a trivial item.
One additional edit:
-- added a version number to the trigger_types so that we can track
which users need to update their profiles when/if new trigger types
get added
-- this is in trigger_types.py
-- also in the users/models.py file
-- users/views.py has some commented notes indicating where/how
version would be checked during user login
-- would probably be able to just re-use the register.html template
(which would also need to be used in order to allow a user to
update their settings)
-- added somes comments in movies/views.py indicating how to easily
handle accepting an empty string in the search form (in order
to allow a user to simply list all the movies in the db)