summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--taskapp/events/task.py11
-rw-r--r--templates/index.html8
2 files changed, 10 insertions, 9 deletions
diff --git a/taskapp/events/task.py b/taskapp/events/task.py
index 04cdd2d..19e84b2 100644
--- a/taskapp/events/task.py
+++ b/taskapp/events/task.py
@@ -8,12 +8,13 @@ from pytask.taskapp.utilities.notification import create_notification
def publishTask(task, rem_mentors=True, rem_comments=True):
""" set the task status to open """
- if task.sub_type == 'D':
- deps, subs = task.map_subs.all(), []
- else:
- subs, deps = task.map_subs.all(), []
+ # if task.sub_type == 'D':
+ # deps, subs = task.map_subs.all(), []
+ #else:
+ # subs, deps = task.map_subs.all(), []
- if subs or any(map(lambda t:t.status!="CM",deps)):
+ task = getTask(task.id)
+ if task.subs or any(map(lambda t:t.status!="CM",task.deps)):
task.status = "LO"
else:
task.status = "OP"
diff --git a/templates/index.html b/templates/index.html
index ce8e2d9..b809faf 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -91,7 +91,7 @@
<li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li>
{% endfor %}
</ul>
- <br /><br />
+ <br />
{% endif %}
{% if mentored_tasks %}
@@ -100,7 +100,7 @@
<li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li>
{% endfor %}
</ul>
- <br /><br >
+ <br />
{% endif %}
{% if working_tasks %}
@@ -109,7 +109,7 @@
<li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li>
{% endfor %}
</ul>
- <br /><br />
+ <br />
{% endif %}
{% if claimed_tasks %}
@@ -118,7 +118,7 @@
<li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li>
{% endfor %}
</ul>
- <br /><br />
+ <br />
{% endif %}
{% endblock %}