Template:Task

From $1
    Table of contents

    {{
    var t=monodevelop.GetTask ($id);
    if (t == nil || #t==0) {
       let t = { id:$id, name:$name, status:"Pending", importance:"Normal", complexity:"Medium" };
       monodevelop.UpdateTask (t);
    }
    if (t.name != $name) {
       let t ..= {name:$name}; monodevelop.UpdateTask (t);
    };
    var pid = string.serialize (page.id);
    if (t.page != pid) {
       let t ..= {page:pid}; monodevelop.UpdateTask (t);
    };
    var ppid = string.serialize (page.parent.id);
    if (t.parentPage != ppid) {
       let t ..= {parentPage:ppid}; monodevelop.UpdateTask (t);
    };
    }}
    {{}}

    Status Owner Importance Complexity MD Version  
    {{ t.status }} {{ t.owner }} {{ t.importance }} {{t.complexity}} {{t.target}}  

    Tag page
    • No tags

    Files (0)

     
    You must login to post a comment.
    Page last modified 02:07, 5 Nov 2009 by Lluis