diff --git a/crowdsourcer/templates/crowdsourcer/authority_audit_questions.html b/crowdsourcer/templates/crowdsourcer/authority_audit_questions.html
index 6ede992b..8e208d8b 100644
--- a/crowdsourcer/templates/crowdsourcer/authority_audit_questions.html
+++ b/crowdsourcer/templates/crowdsourcer/authority_audit_questions.html
@@ -51,6 +51,7 @@
{{ q_form.question_obj.number_and_part }}. {{ q_form.question_obj.description }}
{% if q_form.question_obj.how_marked == "foi" %}(FOI){% endif %}
+ {% if q_form.question_obj.how_marked == "national_data" %}(National Data){% endif %}
diff --git a/crowdsourcer/views/audit.py b/crowdsourcer/views/audit.py
index 3f585290..da7fd645 100644
--- a/crowdsourcer/views/audit.py
+++ b/crowdsourcer/views/audit.py
@@ -22,7 +22,7 @@ class AuthorityAuditSectionQuestions(BaseQuestionView):
response_type = "Audit"
log_start = "Audit form"
title_start = "Audit - "
- how_marked_in = ["volunteer", "national_volunteer", "foi"]
+ how_marked_in = ["volunteer", "national_volunteer", "foi", "national_data"]
def get_initial_obj(self):
initial = super().get_initial_obj()