$def with (self) $:blueprintcss("/static/blueprint") $:js("/static/jquery.min.js") $:jscss("/static/jquery.tooltip.min.js") $:js("/static/jquery.hoverIntent.min.js") $:css("/static/zoom.css") $:css("/static/clock.css") $:js("/static/taskshttpd.min.js") $:jscss("/static/index.min.js") Serveur de tâches
$if self.app.cfilters:  ?  $ wname = self.app.ctl.get_wstore().get_name() [$wname]

Choisissez le store destination

    $for store in self.app.ctl.get_stores().get_stores(): $ name = store.get_name() $ sid = store.get_sid() $ current = name == wname and ' *' or ''
  • $name ($sid)$current
$if self.app.cfilters:

Choisissez une requête déjà effectuée

    $for cfilter in self.app.cfilters: $if cfilter:
  • $cfilter
$if self.msgs:
$for msg in self.msgs:
$msg.msg_value
$for t in [t for t in self.ts if t.cal_today and (t.cal_planned or t.done)]: $if loop.index == 1:

Aujourd'hui

$:self.hts[t.id]
$for t in [t for t in self.ts if t.cal_today and not t.cal_planned and not t.done]: $if loop.index == 1:

Non planifié

$:self.hts[t.id]
$for t in [t for t in self.ts if t.is_cal_future(1)]: $if loop.index == 1:

Demain

$:self.hts[t.id]
$for t in [t for t in self.ts if t.is_cal_future(2)]: $if loop.index == 1:

Après-demain

$:self.hts[t.id]
$for t in [t for t in self.ts if t.is_cal_future(3, True)]: $if loop.index == 1:

Plus tard

$:self.hts[t.id]
$for t in [t for t in self.ts if t.is_cal_future(-1)]: $if loop.index == 1:

Effectuées

$:self.hts[t.id]