You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/app/blueprints/pages/manage/templates/modal_case_template.html
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ <h4>Field types</h4>
50
50
<li>summary: content to prefill the summary.</li>
51
51
<li>tags: A list of case tags.</li>
52
52
<li>tasks: A list of dictionaries defining tasks. Tasks are defined by title (required), description, and list of tags.</li>
53
-
<li>note_directories: A list of dictionaries defining note directories. Note directories are defined by title (required), and list of notes. Notes have title (required) and content</li>
53
+
<li>note_directories: A list of dictionaries defining note directories. Each directory is defined by title (required), an optional list of notes (each with title (required) and optional content), and an optional nested <code>note_directories</code> list to create sub-directory trees of arbitrary depth.</li>
Copy file name to clipboardExpand all lines: source/app/blueprints/pages/manage/templates/modal_upload_case_template.html
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,17 @@ <h4>Upload case template</h4>
64
64
"title": "Identify the compromised accounts",
65
65
"content": "# Observations\n\n"
66
66
}
67
+
],
68
+
"note_directories": [
69
+
{
70
+
"title": "Sub-investigation",
71
+
"notes": [
72
+
{
73
+
"title": "Detailed findings",
74
+
"content": "# Findings\n\n"
75
+
}
76
+
]
77
+
}
67
78
]
68
79
},
69
80
{
@@ -93,7 +104,7 @@ <h4>Field types</h4>
93
104
<li>summary: content to prefill the summary.</li>
94
105
<li>tags: A list of case tags.</li>
95
106
<li>tasks: A list of dictionaries defining tasks. Tasks are defined by title (required), description, and list of tags.</li>
96
-
<li>note_groups: A list of dictionaries defining note groups. Note groups are defined by title (required), and list of notes. Notes have title (required) and content</li>
107
+
<li>note_directories: A list of dictionaries defining note directories. Each directory is defined by title (required), an optional list of notes (each with title (required) and optional content), and an optional nested <code>note_directories</code> list to create sub-directory trees of arbitrary depth.</li>
0 commit comments