From 354f53167ee701c4fd8c8f4b20d992cd378db538 Mon Sep 17 00:00:00 2001 From: David Logie Date: Thu, 21 May 2026 12:13:22 +0100 Subject: [PATCH] CDD-3380 Add R language. --- cms/dynamic_content/blocks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cms/dynamic_content/blocks.py b/cms/dynamic_content/blocks.py index f6dd79708..e57afd8ba 100644 --- a/cms/dynamic_content/blocks.py +++ b/cms/dynamic_content/blocks.py @@ -120,6 +120,7 @@ class MetricNumberBlock(StreamBlock): class ProgrammingLanguages(models.TextChoices): JAVASCRIPT = "Javascript" PYTHON = "Python" + R = "R" TEXT = "Text" JSON = "JSON"