manage.get.gov/docs/architecture/decisions/0010-django-templates.md
2022-09-30 07:41:36 -05:00

19 lines
532 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# n. Django Templates
Date: 2022-09-26
## Status
Approved
## Context
In the context of doing server-side rendering ([ADR](./0008-server-side-rendering.md)), we need some templating engine on the backend which will take variables and insert them into HTML pages to be served to the end user.
## Decision
To use Djangos built-in templating engine.
## Consequences
While it admittedly has fewer capabilities compared to Jinja2, it has the advantage of being already available with no further configuration or dependencies.