fix mail to master of course
This commit is contained in:
parent
cc8e07bc17
commit
1615963c15
1 changed files with 6 additions and 5 deletions
|
@ -878,11 +878,12 @@ def sendTaskReminder():
|
||||||
course = Course.get_by_id(int(t.courseId))
|
course = Course.get_by_id(int(t.courseId))
|
||||||
if t.isPersonal:
|
if t.isPersonal:
|
||||||
for uId in course.membersId:
|
for uId in course.membersId:
|
||||||
tc = TaskComponent.all().filter("taskId = ", t.key().id()).filter("userId = ", int(uId))
|
if int(uId) != course.master_id:
|
||||||
if tc.count() == 0:
|
tc = TaskComponent.all().filter("taskId = ", t.key().id()).filter("userId = ", int(uId))
|
||||||
user = User.get_by_id(int(uId))
|
if tc.count() == 0:
|
||||||
send_task_reminder(user.email, user.name, t.title, course.courseName)
|
user = User.get_by_id(int(uId))
|
||||||
print ""
|
send_task_reminder(user.email, user.name, t.title, course.courseName)
|
||||||
|
print ""
|
||||||
|
|
||||||
else:
|
else:
|
||||||
projects = Project.all().filter("courseId = ", course.key().id())
|
projects = Project.all().filter("courseId = ", course.key().id())
|
||||||
|
|
Loading…
Reference in a new issue