From 1623ddc73acee166747915117591b6536f764daf Mon Sep 17 00:00:00 2001 From: Parbhat Puri <parbhatpuri17@gmail.com> Date: Tue, 30 Jul 2019 08:38:41 +0000 Subject: [PATCH] Display term's parent name in meta terms block in submission detail page --- .../apply/funds/templates/funds/includes/meta_terms_block.html | 1 + 1 file changed, 1 insertion(+) diff --git a/opentech/apply/funds/templates/funds/includes/meta_terms_block.html b/opentech/apply/funds/templates/funds/includes/meta_terms_block.html index b6f78ea86..9b8bbf890 100644 --- a/opentech/apply/funds/templates/funds/includes/meta_terms_block.html +++ b/opentech/apply/funds/templates/funds/includes/meta_terms_block.html @@ -2,6 +2,7 @@ <h5>Meta Terms</h5> <ul> {% for meta_term in object.meta_terms.all %} + <h6 class="heading--no-margin">{{ meta_term.get_parent }}</h6> <li>{{ meta_term.name }}</li> {% empty %} None. Meta terms can be added to a submission using Meta terms button at top. -- GitLab