move TODOs into DB
This commit is contained in:
parent
d166ca15eb
commit
4bda161e10
@ -31,7 +31,7 @@ def new(
|
|||||||
name = typer.prompt("Name")
|
name = typer.prompt("Name")
|
||||||
if "category" in required and not category:
|
if "category" in required and not category:
|
||||||
category = typer.prompt("Category")
|
category = typer.prompt("Category")
|
||||||
due = typer.prompt("Due (YYYY-MM-DD):")
|
# due = typer.prompt("Due (YYYY-MM-DD):")
|
||||||
# TODO: validate/allow blank
|
# TODO: validate/allow blank
|
||||||
|
|
||||||
add_task(name, category, due)
|
add_task(name, category, due)
|
||||||
|
@ -21,18 +21,6 @@ from .utils import (
|
|||||||
get_colored_date,
|
get_colored_date,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Parity
|
|
||||||
# TODO: saved searches
|
|
||||||
# Nice to Have
|
|
||||||
# TODO: overview, show recent work, progress on project level
|
|
||||||
# TODO: CLI
|
|
||||||
# TODO: config- default category, types, colors
|
|
||||||
# TODO: dropdowns for status, type, category
|
|
||||||
# Eventual Goals
|
|
||||||
# TODO: task templates
|
|
||||||
# TODO: recurring
|
|
||||||
# TODO: abstraction
|
|
||||||
|
|
||||||
COLUMNS = ("ID", "Task", "Status", "Type", "Due", "Category")
|
COLUMNS = ("ID", "Task", "Status", "Type", "Due", "Category")
|
||||||
column_to_field = {
|
column_to_field = {
|
||||||
0: "ID",
|
0: "ID",
|
||||||
|
Loading…
Reference in New Issue
Block a user