Adding a link to a document library

Hi, I am trying to build an Org chart based from Job descriptions in a SharePoint list. I Have the structure of the of list and the org chart builds as required. Now I would like to have a link in each Job description box in the Org chart linking to a job description document referenced in the URL column of my SharePoint list.

Is this possible?

Hi @steve.bradley,

You can add the field under the 'Templates' tab in the configuration wizard. Make sure to set its display type to 'link':

@a.cox, Thank you for your reply. I had already tried this, but can only add a long URL to the Org Chart boxes. Is there a way to add it as an HREF (Visit Example)?

Hi @steve.bradley,

Sure, you can do that by switching the template editor to HTML and adding the following code to your template:

{{#if CustomURL}}
    <div class="poch-box__field">
        <a target="_blank" data-interception="off" href={{CustomURL}}>Click me</a>
    </div>
{{/if}}

Make sure to replace 'CustomURL' and 'Click me' with your values.

Result: