From a42e77e639f7129089418afb64d1c8b2a07d5bdd Mon Sep 17 00:00:00 2001 From: Seamus Johnston Date: Fri, 30 Sep 2022 07:41:36 -0500 Subject: [PATCH] Justify Django Templates in ADR --- .../decisions/0010-django-templates.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs/architecture/decisions/0010-django-templates.md diff --git a/docs/architecture/decisions/0010-django-templates.md b/docs/architecture/decisions/0010-django-templates.md new file mode 100644 index 000000000..91ee23467 --- /dev/null +++ b/docs/architecture/decisions/0010-django-templates.md @@ -0,0 +1,19 @@ +# 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 Django’s 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.