In the interest of team autonomy and fault tolerance, we partition parts of our platform into isolated Django projects. Although this allows for independent development work, it also means that some resources that are traditionally created on a per-project basis, like globally-used templates, need to be shared across projects. A reusable Django app could normally do the trick, but we want to deliver template updates to all consumers as instantaneously as possible without deployments. How do we do it?