# Signature from dropdown

**URL:** https://community.silverfin.com/t/signature-from-dropdown/2338
**Category:** Templates
**Created:** [September 2, 2022, 8:23am UTC](https://community.silverfin.com/t/signature-from-dropdown/2338 "2022-09-02T08:23:41Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Romy\_Vermeeren](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/romy_vermeeren/32/2295_2.png) [@Romy\_Vermeeren](https://community.silverfin.com/u/Romy_Vermeeren)
#### Post date: [September 6, 2022, 7:24am UTC](https://community.silverfin.com/t/signature-from-dropdown/2338/2 "2022-09-06T07:24:36Z")

</div>

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:

```auto
{% 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](https://community.silverfin.com/t/case-make-signatures-work-with-any-digital-signing-integration/1996).

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

---

_[View the full topic](https://community.silverfin.com/t/signature-from-dropdown/2338)._
