Other than using the built-in grievance mechanism, TELL US, you may publish live versions of your impact assessments, making them available in real time through your website or as linked live documents.
How to publish your impact assessments
To make live versions of your impact assessments, navigate to the dashboard and click 'manage this unit' on the left side unit panel for the unit you wish to disclose. Click the 'assessment and disclosure' tab at the top in the unit settings. Toggle the buttons as appropriate to how you want your assessments to appear, then click Update. The links to the public live assessments for each bottom line will activate and become functional. Click the links to open each impact assessment. Copy the link URLs for each impact assessment to use them on your website or use them to create embedded versions like in the example shown below.
Integration on your website
You can integrate public impacts assessments on your website however you see fit. For illustrative purposes, we have created the script below which may be inspire you or your web admin. Note that we do not provide additional support for this solution, and it is provided as is.
Writing custom text in your public assessments
If desired, you can include custom text and information in your public live assessments. This enables you to add to the information in the impact assessments.
Note that the formatting of such custom text significantly influences how it appears in the live assessments.
You may need a minimal knowledge of HTML to write the custom text that displays precisely as you want. Ask your web developer for help and use the tags and classes available as instructed below:
The H2 tag will include the heading in the table of contents, inserted above the rest of the content elements.
You can use the H4 tag as a sub-heading in the primary accent color for the bottom line (i.e. orange for social, green for environmental, and blue for economic).
Using the table tag and the class 'data-table', you will create a section similar to how the rest of the impact assessment is displayed with a left-side label and content on the right.
Use the classes 'data-label' and 'data-field' on the td tags in order for this to work.
See the example below for how you can write the custom text. Click the 'source' button in the rich text editor field for the custom text before inserting the code below, then switch to visual view and edit as appropriate.
<h2>Main heading goes here</h2>
<h4>Sub-heading goes here</h4>
<table class="data-table">
<tbody>
<tr>
<td class="data-label">Left side text</td>
<td class="data-field">
<p>Introduction to our due diligence reports</p>
<pLorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris non sagittis lacus. Sed viverra eget est interdum consequat. Nunc commodo non dui in vestibulum. Suspendisse efficitur, magna eget elementum interdum, nisl orci porta nisi, vitae hendrerit orci neque non est. In vel odio non ex pretium lacinia. Vestibulum vel risus pharetra, dignissim lacus sed, dapibus nisl. Duis non odio enim. Nulla nunc arcu, faucibus non mattis nec, facilisis ac nulla.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris non sagittis lacus. Sed viverra eget est interdum consequat. Nunc commodo non dui in vestibulum. Suspendisse efficitur, magna eget elementum interdum, nisl orci porta nisi, vitae hendrerit orci neque non est. In vel odio non ex pretium lacinia. Vestibulum vel risus pharetra, dignissim lacus sed, dapibus nisl. Duis non odio enim. Nulla nunc arcu, faucibus non mattis nec, facilisis ac nulla.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris non sagittis lacus. Sed viverra eget est interdum consequat. Nunc commodo non dui in vestibulum. Suspendisse efficitur, magna eget elementum interdum, nisl orci porta nisi, vitae hendrerit orci neque non est. In vel odio non ex pretium lacinia. Vestibulum vel risus pharetra, dignissim lacus sed, dapibus nisl. Duis non odio enim. Nulla nunc arcu, faucibus non mattis nec, facilisis ac nulla.</p>
</td>
</tr>
</tbody>
</table>
