Quote:
Originally Posted by foosion
I like the idea of tracking abandoned books.
|
I have a stored template for tracking read status and for it I defined did-not-finished by adding 'dnf' to the#admintags column.
Code:
program:
percent = $$#percentread;
if 'dnf' inlist $#admintags
then 'didnotfinish'
elif percent >=#1 && percent <=#99
then 'currentlyreading'
elif $#readinglist=='To Be Read' && percent ==#0
then 'toberead'
elif percent >=#100
then 'read'
elif percent == 'None'
then 'undefined'
elif percent >=#0
then 'unread'
fi