```toml
[templates]
draft_commit_description = '''
concat(
coalesce(description, default_commit_description, "\n"),
surround(
"\nJJ: This commit contains the following changes:\n", "",
separate(
"JJ:\n",
indent("JJ: ", diff.stat(72)),
indent("JJ: ", diff.git())
),
),
)
'''
```