pytask/taskapp/events/task.py
author anoop
Mon, 01 Feb 2010 14:14:04 +0530
changeset 17 9ca9f98af0eb
parent 14 f2623fb8041a
child 18 293692eb8f06
permissions -rw-r--r--
added files edit_profile.html and my_profile.html.

from datetime import datetime
from pytask.taskapp.models import Profile, Task, Comment, Credit

def publishTask(task):
    """ set the task status to open """
    
    task.status = "OP"
    task.save()
    return task

def addMentor(task,mentor):
    """ add the mentor to mentors list of the task """
    
    task.mentors.add(mentor)
    task.save()
    return task    
    
def createTask(title,desc,created_by,credits):
    """ creates a bare minimum task with title, description and credits.
    the creator of the task will be assigned as a mentor for the task.
    """

    try:
        task = Task.objects.get(title__iexact=title)
        return None
    except Task.DoesNotExist:
        task = Task(title=title)
    task.desc = desc
    task.created_by = created_by
    task.credits = credits
    task.creation_datetime = datetime.now()
    task.save()
    return task

def addSubTask(main_task, sub_task):
    """ add sub_task to subs list of main_task """
    
    main_task.subs.add(sub_task)
    main_task.status = "LO"
    main_task.save()
    return main_task