From 15b9d85e5514d1ba481ee493c15f5aab80424ae9 Mon Sep 17 00:00:00 2001 From: schodet Date: Wed, 5 Oct 2005 22:04:28 +0000 Subject: Ajout d'une préversion de la sortie HTML. Ajout d'une préversion de la sortie texte. --- p/tools/todo.html.tt | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 p/tools/todo.html.tt (limited to 'p/tools/todo.html.tt') diff --git a/p/tools/todo.html.tt b/p/tools/todo.html.tt new file mode 100644 index 0000000..fe25164 --- /dev/null +++ b/p/tools/todo.html.tt @@ -0,0 +1,44 @@ + + + + + + ToDo + + + + + + + +[% BLOCK leaf %] +
  • [% task.state %] [% task.text %] [% task.owner.join (', ') %]

  • +[% END %] + +[% BLOCK task %] + [% IF tasks.size > 0 %] + [% FOREACH t = tasks %] + [% IF t.exists ('text') %] + [% PROCESS leaf task = t %] + [% ELSE %] + [% IF t.key %] + [% IF t.value.value.exists ('text') %] + prout + [% ELSE %] +
  • [% t.key %]

    + +
  • + [% END %] + [% ELSE %] + [% PROCESS task tasks = t.value %] + [% END %] + [% END %] + [% END %] + [% ELSE %] +
  • Aucune Tache

  • + [% END %] +[% END %] -- cgit v1.2.3