Signature from dropdown

Hi @lieels01!

Are you looking to add signmarkers for digital signing with one of our integrations?

Continuing from the code you already wrote, you could add something like this:

{% ic %}
The undersigned, {% input custom.person_option.to_select as:select options:person_options option_values:person_option_values %}, etc.
{% endic %}
{% nic %}
  {% for person in period.directors %}
    {% comment %}match the person chosen via the dropdown{% endcomment %}
    {% if person.id == custom.person_option.to_select %}
      {% capture person_name %}person_name_{{ person.id }}{% endcapture %}
      The undersigned,
      <br><br><br><br><br>
      {% signmarker name:[person_name] %}
      <br><br><br>
      {{ [person_name] }}
    {% endif %}
  {% endfor %}
{% endnic %}

More info can be found in this case.

If this is not what you were looking to achieve, can you elaborate a bit more on what you want the piece of code to do?

Kind regards,
Romy