Permalink
Cannot retrieve contributors at this time
metadata: | |
title: Available interviews | |
documentation: "https://docassemble.org/docs/config.html#dispatch interview" | |
example start: 1 | |
example end: 2 | |
--- | |
code: | | |
available_interviews = interview_menu() | |
--- | |
prevent going back: True | |
mandatory: True | |
question: | | |
Available interviews | |
subquestion: | | |
% if len(available_interviews) > 0: | |
% for interview in available_interviews: | |
* [${ interview['title'] }](${ interview['link'] }) | |
% endfor | |
% else: | |
There are no available interviews. | |
% endif |