mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
fa61bc53fc
* TW5-es-ES-edition Spanish edition of TW5. A full localisation of TiddlyWiki into castillian spanish (es-ES). * Translation ongoing * Translation ongoing * Translation ongoing * Translation ongoing + TiddlySpot upload * Translation ongoing * Translation ongoing + macro fixes * Translation ongoing * translation ongoing + macro fixes * Translation ongoing * Translation ongoing * Translation ongoing * Translation ongoing * Translation ongoing * translation ongoing * translation ongoing * Translation ongoing * translation ongoing * translation ongoing * translation ongoing * Arreglo plugin * Arreglo plugin * Translation ongoing * Translation ongoing * Translation ongoing * translation ongoing * Add Spanish edition to TW5.com * Reverting forced language plugin load. folder es-ES was provisorily added to the tiddlerStore in order to force the load of the updated language plugin. Finished the translation, and with the updated plugin on place, this folder has no use when the new release comes out.
28 lines
910 B
Plaintext
28 lines
910 B
Plaintext
caption: Administración de tareas
|
|
created: 20130825213300000
|
|
es-title: Ejemplo de administración de tareas
|
|
modified: 20160416115204535
|
|
tags: Learning
|
|
title: TaskManagementExample
|
|
type: text/vnd.tiddlywiki
|
|
|
|
TiddlyWiki5 sirve también como sencillo sistema de administración de tareas, sin necesidad de mayores complicaciones. La idea consiste en etiquetar las tareas como `task`, de modo que una vez hechas se etiqueten también como `done`. Así resulta bastante sencillo generar listas de tareas.
|
|
|
|
Aquí tienes un ejemplo:
|
|
|
|
! Tareas pendientes
|
|
|
|
<$list filter="[!has[draft.of]tag[task]!tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> <$link to={{!!title}}><$view field="caption"/></$link></$checkbox>
|
|
|
|
</$list>
|
|
|
|
! Tareas completadas
|
|
|
|
<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> ~~<$link to={{!!title}}><$view field="caption"/></$link>~~</$checkbox>
|
|
|
|
</$list>
|