I'm staring to play around with Datablaze databses to see how I can utilize them in my clinic. Below is an example of what I am using but I'm curious if anyone else has started using it?
I noticed an example template (Text Blaze | Resource Link Generator) on the TextBlaze/Datablaze resources that was actually meant for generating support links which is very applicable to doctors who send out website links to online health resources.
With Datablaze once you set everything up properly it is much easier to add and remove online resource entries and have the snippet update dynamically.
It has already made it much easier for me since now all my online resources are in one place and I can easily update it as they change or I find more.
The below entries are just an example (my own list is already close to 50 entries with everything from links to local community resources to how to manage certain injuries / conditions). Luckily you can search your entries in the snippet so as long as you know the first few letters you can make it easy to find what you need.
Another nice thing is that you can with the below snippet as as many resources as you want and it will simply add another bullet point.
{note}
{dbselect: SELECT resource_name, resource_text, resource_link FROM Patient_Resources ORDER BY resource_name ASC; space=id; multiple=yes; menu=yes; name=selected_resources}
{endnote}Here are the resources I mentioned on our visit:
- {repeat: for resource in selected_resources}{link: {=resource["resource_link"]}}{=resource["resource_name"]}{endlink} - {=resource["resource_text"]} {if: location(selected_resources, resource)<count(selected_resources)}
- {endif}{endrepeat}