diff options
author | Dan McGee <dan@archlinux.org> | 2012-12-31 11:36:29 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-12-31 11:36:29 -0600 |
commit | eea59cd12b6f17c5f0f96805205bc4967143f658 (patch) | |
tree | f2422448898b331cec98e16934d695b5c55b028a | |
parent | 7952fe0ede3a5a68a64f05eccb180194394652f3 (diff) |
Set user on todolist packages when flag status changes
This will allow us to see who last changed the status of a todolist
item.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | todolists/views.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/todolists/views.py b/todolists/views.py index 32ee7cc5..f4f9ab21 100644 --- a/todolists/views.py +++ b/todolists/views.py @@ -46,6 +46,7 @@ def flag(request, slug, pkg_id): tlpkg.status = TodolistPackage.COMPLETE else: tlpkg.status = TodolistPackage.INCOMPLETE + tlpkg.user = request.user tlpkg.save() if request.is_ajax(): data = { |