It is possible to display high level information about any given dataset and its related attributes on the dashboard tab.
Additionally, dataset row queries can be created and embedded on the dashboard or a custom tab to dynamically display a list of related records. Common examples of dataset row queries include:
- Donors to the fund/company
- Gifts that make up the fund/company
- Pledges toward the fund/company
- Employees of the company
Read this article for more information on how to configure embedded dataset row queries.
Named Space Photo Display
It is possible to display a Photo of a Named Space on a record's Dashboard that has been added as a material. This can be achieved by creating a Dashboard Query with a specific export configuration.
- Documentation on creating the query and configuring the Dashboard can be found here: https://knowledge.technolutions.com/hc/en-us/articles/360032819152-Customizing-Dashboards
- Documentation on creating a material can be found here: https://knowledge.technolutions.com/hc/en-us/articles/360032629992-Materials
After this step you'll move on to actually configuring the Dashboard. Further details on how to do so can be found here: https://knowledge.technolutions.com/hc/en-us/articles/360032819152-Customizing-Dashboards
To add your image to the Dashboard, you'll utilize Liquid Looping with your "images" Dictionary export. When you use Liquid Looping with a Dictionary export, the name of the export is the "node" that you'll reference in the loop: {% for item in dictionary_export_name %}
In this case, this "node" is images.
Any exports that you added within the Dictionary export will be referenced re-pending each merge field with the variable that you've selected in your Liquid Loop (whatever comes directly after "for"). This can be any word you choose - in our example we used "item" whenever possible for consistency's sake. Inside the Liquid Looping you'll also utilize some HTML in order to create the reference for the image to display. All of this will come together like so:
{% for item in images %}
<div style="float: left;width: 220px;">
<a href="/manage/lookup/material?id={{item.guid}}&cmd=display" target="_blank">
<img src="/manage/database/acquire?cmd=tile&id={{item.stream}}
&pg=0&z=14" width="200px" /></a>
<br />
{{item.memo}}
</div>
{% endfor %}
As long as you've utilized the same names for your exports as we have, you can take the above example and place it in the source of your Dashboard: |
Once in place, the image uploaded as a material to the record will display.