@tonguetoquill/collection 0.10.1 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/quills/daf1206/0.1.0/Quill.yaml +11 -11
- package/quills/daf1206/0.1.0/example.md +11 -11
- package/quills/daf1206/0.1.0/plate.typ +12 -12
- package/templates/daf1206.md +12 -12
package/package.json
CHANGED
|
@@ -10,42 +10,42 @@ main:
|
|
|
10
10
|
ui:
|
|
11
11
|
hide_body: true
|
|
12
12
|
fields:
|
|
13
|
-
|
|
13
|
+
award:
|
|
14
14
|
title: Award
|
|
15
15
|
type: string
|
|
16
16
|
required: true
|
|
17
|
-
|
|
17
|
+
category:
|
|
18
18
|
title: Category (If Applicable)
|
|
19
19
|
type: string
|
|
20
|
-
|
|
20
|
+
award_period:
|
|
21
21
|
title: Award Period
|
|
22
22
|
type: string
|
|
23
23
|
required: true
|
|
24
|
-
|
|
24
|
+
rankname_of_nominee:
|
|
25
25
|
title: Rank/Name of Nominee (First, Middle Initial, Last)
|
|
26
26
|
type: string
|
|
27
27
|
required: true
|
|
28
|
-
|
|
28
|
+
majcom_fldcom_foa_or_dru:
|
|
29
29
|
title: MAJCOM/FLDCOM/FOA/DRU
|
|
30
30
|
type: string
|
|
31
|
-
|
|
31
|
+
dafscduty_title:
|
|
32
32
|
title: DAFSC/Duty Title
|
|
33
33
|
type: string
|
|
34
|
-
|
|
34
|
+
nominees_telephone:
|
|
35
35
|
title: Nominee's Telephone (DSN/Commercial)
|
|
36
36
|
type: string
|
|
37
|
-
|
|
37
|
+
unitoffice_symbol:
|
|
38
38
|
title: Unit/Office Symbol/Street Address/Base/State/Zip Code
|
|
39
39
|
type: string
|
|
40
|
-
|
|
40
|
+
unit_commander:
|
|
41
41
|
title: Rank/Name of Unit Commander & Telephone
|
|
42
42
|
type: string
|
|
43
|
-
|
|
43
|
+
accomplishments:
|
|
44
44
|
title: Specific Accomplishments (Page 1)
|
|
45
45
|
type: string
|
|
46
46
|
ui:
|
|
47
47
|
multiline: true
|
|
48
|
-
|
|
48
|
+
accomplishments_continued:
|
|
49
49
|
title: Specific Accomplishments (Continued - Page 2)
|
|
50
50
|
type: string
|
|
51
51
|
ui:
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
---
|
|
2
2
|
QUILL: daf1206@0.1.0
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
award: "AIR AND SPACE ACHIEVEMENT MEDAL"
|
|
4
|
+
category: "asdfasdfasdf"
|
|
5
|
+
award_period: "1 Jan 24 - 31 Dec 24 asdfasdfasdf"
|
|
6
|
+
rankname_of_nominee: "SSgt Doe, John A."
|
|
7
|
+
majcom_fldcom_foa_or_dru: "ACC"
|
|
8
|
+
dafscduty_title: "1D7X1 / Cyber Operator"
|
|
9
|
+
nominees_telephone: "DSN: 123-4567 / Comm: (123) 456-7890"
|
|
10
|
+
unitoffice_symbol: "1st Communications Squadron / SC, 123 Main St, AFB, ST 12345"
|
|
11
|
+
unit_commander: "Capt Jane Smith / DSN: 123-4568 / Comm: (123) 456-7891"
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
accomplishments: |-
|
|
14
14
|
- Spearheaded major network upgrade; improved speed by 50%
|
|
15
15
|
- Mentored 5 Airmen; 100% upgrade training completion rate
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
accomplishments_continued: |-
|
|
18
18
|
- Continued excellence in supporting base communications
|
|
19
19
|
---
|
|
@@ -7,22 +7,22 @@
|
|
|
7
7
|
#let vals = (:)
|
|
8
8
|
|
|
9
9
|
// --- Admin fields (page 1 header) ---
|
|
10
|
-
#if "
|
|
11
|
-
#if "
|
|
12
|
-
#if "
|
|
10
|
+
#if "award" in data { vals.insert("AWARD", data.award) }
|
|
11
|
+
#if "category" in data { vals.insert("CATEGORY_If_Applicable", data.category) }
|
|
12
|
+
#if "award_period" in data { vals.insert("AWARD_PERIOD", data.award_period) }
|
|
13
13
|
|
|
14
|
-
#if "
|
|
15
|
-
#if "
|
|
14
|
+
#if "rankname_of_nominee" in data { vals.insert("RANKNAME_OF_NOMINEE_First_Middle_Initial_Last", data.rankname_of_nominee) }
|
|
15
|
+
#if "rankname_of_nominee" in data { vals.insert("RANKNAME_OF_NOMINEE_First_Middle_Initial_Last_2", data.rankname_of_nominee) }
|
|
16
16
|
|
|
17
|
-
#if "
|
|
18
|
-
#if "
|
|
19
|
-
#if "
|
|
20
|
-
#if "
|
|
21
|
-
#if "
|
|
17
|
+
#if "majcom_fldcom_foa_or_dru" in data { vals.insert("MAJCOM_FLDCOM_FOA_OR_DRU", data.majcom_fldcom_foa_or_dru) }
|
|
18
|
+
#if "dafscduty_title" in data { vals.insert("DAFSCDUTY_TITLE", data.dafscduty_title) }
|
|
19
|
+
#if "nominees_telephone" in data { vals.insert("NOMINEES_TELEPHONE__DSN__Commercial", data.nominees_telephone) }
|
|
20
|
+
#if "unitoffice_symbol" in data { vals.insert("UNITOFFICE_SYMBOLSTREET_ADDRESSBASESTATEZIP_CODE", data.unitoffice_symbol) }
|
|
21
|
+
#if "unit_commander" in data { vals.insert("RANKNAME_OF_UNIT_COMMANDER_First_Middle_Initial_LastCOMMANDERS_TELEPHONE_DSN__Commercial", data.unit_commander) }
|
|
22
22
|
|
|
23
23
|
// --- Accomplishments (page 1 & 2 content) ---
|
|
24
|
-
#if "
|
|
25
|
-
#if "
|
|
24
|
+
#if "accomplishments" in data { vals.insert("SPECIFIC_ACCOMPLISHMENTS_Use_Performance_Statements_IAW_DAFMAN_362806", data.accomplishments) }
|
|
25
|
+
#if "accomplishments_continued" in data { vals.insert("SPECIFIC_ACCOMPLISHMENTS_Use_Performance_Statements_IAW_DAFMAN_362806_Continued", data.accomplishments_continued) }
|
|
26
26
|
|
|
27
27
|
// Render the form with assembled values
|
|
28
28
|
#form(..vals)
|
package/templates/daf1206.md
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
---
|
|
2
|
-
QUILL: daf1206@0.1
|
|
2
|
+
QUILL: daf1206@0.1
|
|
3
3
|
|
|
4
4
|
# EDIT: Award name (e.g., "AIR AND SPACE ACHIEVEMENT MEDAL")
|
|
5
|
-
|
|
5
|
+
award: "AWARD NAME"
|
|
6
6
|
# EDIT: Category (If Applicable)
|
|
7
|
-
|
|
7
|
+
category: ""
|
|
8
8
|
# EDIT: Award Period (e.g., "1 Jan 24 - 31 Dec 24")
|
|
9
|
-
|
|
9
|
+
award_period: "1 Jan 2X - 31 Dec 2X"
|
|
10
10
|
# EDIT: Rank/Name of Nominee (First, Middle Initial, Last)
|
|
11
|
-
|
|
11
|
+
rankname_of_nominee: "LAST, FIRST M."
|
|
12
12
|
# EDIT: MAJCOM/FLDCOM/FOA/DRU
|
|
13
|
-
|
|
13
|
+
majcom_fldcom_foa_or_dru: ""
|
|
14
14
|
# EDIT: DAFSC/Duty Title
|
|
15
|
-
|
|
15
|
+
dafscduty_title: ""
|
|
16
16
|
# EDIT: Nominee's Telephone (DSN/Commercial)
|
|
17
|
-
|
|
17
|
+
nominees_telephone: ""
|
|
18
18
|
# EDIT: Unit/Office Symbol/Street Address/Base/State/Zip Code
|
|
19
|
-
|
|
19
|
+
unitoffice_symbol: ""
|
|
20
20
|
# EDIT: Rank/Name of Unit Commander & Telephone
|
|
21
|
-
|
|
21
|
+
unit_commander: ""
|
|
22
22
|
|
|
23
23
|
# EDIT: Specific Accomplishments (Page 1)
|
|
24
|
-
|
|
24
|
+
accomplishments: |-
|
|
25
25
|
-
|
|
26
26
|
-
|
|
27
27
|
|
|
28
28
|
# EDIT: Specific Accomplishments (Continued - Page 2)
|
|
29
|
-
|
|
29
|
+
accomplishments_continued: |-
|
|
30
30
|
-
|
|
31
31
|
---
|