3.5.4 Setting todo

 
class dev1(Resource): pass

def Acso():
    resource = dev1
    start = "2005-1-16"
    now = "2005-1-19 10:00" 

    def Database():
        effort = "1d"

    def Gui():
        effort = "2d"
        todo = "1d"

    def Backend():
        effort = "1d"
        
acso = BalancedProject(Acso)
 \includegraphics[width=\pwidth]{trtodo}
Name Effort Complete Demand Complete Todo Done Todo + Done
Database 1d 100 100 0d 1d 1d
Gui 2d 55 62 1d 1d 2H 2d 2H
Backend 1d 0 0 1d 0d 1d
Instead of specifing complete you can also set the todo attribute, which is often easier to determine than the completion. (Although you can calculate one from the other.)