summaryrefslogtreecommitdiff
path: root/taskapp/views/task.py
diff options
context:
space:
mode:
Diffstat (limited to 'taskapp/views/task.py')
-rw-r--r--taskapp/views/task.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/taskapp/views/task.py b/taskapp/views/task.py
index 4438401..071f69b 100644
--- a/taskapp/views/task.py
+++ b/taskapp/views/task.py
@@ -104,7 +104,10 @@ def view_task(request, tid):
if request.method == 'POST':
if not is_guest:
- data = request.POST["data"]
+ data = request.POST.get("data", "").strip()
+ if not data:
+ context['error_msg'] = "Enter some message to comment"
+ return render_to_response('task/view.html', context)
new_comment = Comment(task=task, data=data, created_by=user, creation_datetime=datetime.now())
new_comment.save()
return redirect(task_url)