Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
docassemble/docassemble_base/docassemble/base/data/questions/examples/attachment-code.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
41 lines (41 sloc)
877 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metadata: | |
title: Computed attachment list | |
example start: 1 | |
example end: 4 | |
documentation: "https://docassemble.org/docs/documents.html#attachment code" | |
--- | |
mandatory: True | |
question: | | |
Here are your documents! | |
attachment code: | | |
[doc_one, doc_two, doc_three] | |
--- | |
attachment: | |
name: The first document | |
filename: document_one | |
description: | | |
This is the first document | |
of a series. | |
variable name: doc_one | |
content: | | |
Hello, world number one! | |
--- | |
attachment: | |
name: The second document | |
filename: document_two | |
description: | | |
This is the second document | |
of a series. | |
variable name: doc_two | |
content: | | |
Hello, world number two! | |
--- | |
attachment: | |
name: The third document | |
filename: document_three | |
description: | | |
This is the third document | |
of a series. | |
variable name: doc_three | |
content: | | |
Hello, world number three! |