mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-02 16:16:18 +00:00
4764c456ca
* Add field 'fr-title' to 'TaskManagementExample' * Change button texts to latest version * Change language English to French of link for empty edition * Change language English to French of link for document * Add download button to 'Empty Edition' * Remove string 'index.html' from 'Full Edition' * Change external links to match locale with wiki language * Change string in 'task' * Add newline to 'TiddlyDesktop Releases' * Remove string 'index.html' from 'Some of the things you can do with TiddlyWiki' * Change instructions for use in 'Saving on iPad/iPhone' * Add YouTube button to 'HelloThere' * Add 'rel="noopener noreferrer"' to external links * Remove CamelCase link 'TiddlyWiki' from tiddlers tagged 'Community' * Change link 'TiddlyWiki Groups' to 'Forums' in 'Articles' * Change language English to French of caption in tiddlers tagged 'HelloThumbnail' * Add image to 'HelpingTiddlyWiki'
25 lines
907 B
Plaintext
25 lines
907 B
Plaintext
created: 20130825213300000
|
|
fr-title: Exemple de gestion de tâches
|
|
modified: 20160523100238122
|
|
tags: Learning
|
|
title: TaskManagementExample
|
|
type: text/vnd.tiddlywiki
|
|
|
|
TiddlyWiki5 peut servir de système de gestion de tâches simple sans personnalisation supplémentaires. L'idée est que les tâches soient taguées avec `task`, celles étant terminées portant également le tag `done`. De cette manière, il est très simple de générer des listes de tâches.
|
|
|
|
! Tâches à effectuer
|
|
|
|
<$list filter="[!has[draft.of]tag[task]!tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> <$link to={{!!title}}><$view field="fr-title"><$view field="title"/></$view></$link></$checkbox>
|
|
|
|
</$list>
|
|
|
|
! Tâches terminées
|
|
|
|
<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> ~~<$link to={{!!title}}><$view field="fr-title"><$view field="title"/></$view></$link>~~</$checkbox>
|
|
|
|
</$list>
|