Skip to main content

Set Title

You can set the title of a Kanban card from a thread using the set_title function:

from abstra.workflows import set_title

set_title('title')
info

The title will default to the time of the thread's last update.

Examples

Combine inputs

You can set the title of your cards as combinations of useful information about the current thread:

from abstra.forms import read
from abstra.workflows import set_title

name = read("What is your name?")
company = read("Where do you work at?")

card_title = f"{name} - {company}"
set_title(card_title)