To Do objects brainstorm - noisebridge/pyclass-project GitHub Wiki

Some ideas on fields for to do item objects:

name

details

excellence (how much XP it's worth)

due_date

interests

tags (ManytoMany field holding strings, but separate from interests, like "front gate")

completed (boolean)

assigned_users

assigned_groups

sub_tasks (one_to_many field holding other todos)

created_by

created_date

We might also want to add a status field. For items like in progress.

Change completed from a boolean to a set of choices, e.g. "open", "in progress", "completed"? Status changes to "in progress" when claimed. Possibly others that can be set manually by users (unlike the above), like "on hold" or "under discussion".