From 7693954fbe11a9b4ffbb1db72964ca484afcd728 Mon Sep 17 00:00:00 2001 From: sab-LC <145371882+sab-LC@users.noreply.github.com> Date: Wed, 13 Nov 2024 05:23:16 -0800 Subject: [PATCH] Corrected UI bug (#402) --- templates/communities/apply-labels.html | 87 ++++++++++++------------- 1 file changed, 43 insertions(+), 44 deletions(-) diff --git a/templates/communities/apply-labels.html b/templates/communities/apply-labels.html index 3fdc61f3..05a7846d 100644 --- a/templates/communities/apply-labels.html +++ b/templates/communities/apply-labels.html @@ -4,11 +4,53 @@
Projects >> Apply Labels
-
+

Apply Labels

Please choose from your customized Labels below. Select a Label to see description.

+ +
+ +
+ {% if project.tk_labels.all or project.bc_labels.all %} + {% if project.tk_labels.all %} + {% for tklabel in project.tk_labels.all %} +
+ {% include 'tklabels/tiny-labels.html' %} +
+ {% endfor %} + {% endif %} + + {% if project.bc_labels.all %} + {% for bclabel in project.bc_labels.all %} +
+ {% include 'bclabels/tiny-labels.html' %} +
+ {% endfor %} + {% endif %} + {% else %} +
+ {% if project.project_notice.all %} + {% for notice in project.project_notice.all %} + {% if not notice.archived %} + {% if notice.notice_type == 'biocultural' %} +
BC Notice icon. Black background with the top right corner folded and the letters “BC” in white in center.
+ {% endif %} + {% if notice.notice_type == 'traditional_knowledge' %} +
TK Notice icon. Black background with the top right corner folded and the letters “TK” in white in center.
+ {% endif %} + {% if notice.notice_type == 'attribution_incomplete' %} +
Attribution Incomplete Notice icon. Black square with the top right corner folded and a white square in center with left side in solid line and right side in dotted line.
+ {% endif %} + {% endif %} + {% endfor %} + {% endif %} +
+ {% endif %} + +
+

@@ -46,49 +88,6 @@

{% endif %}

-
- -
- {% if project.tk_labels.all or project.bc_labels.all %} - {% if project.tk_labels.all %} - {% for tklabel in project.tk_labels.all %} -
- {% include 'tklabels/tiny-labels.html' %} -
- {% endfor %} - {% endif %} - - {% if project.bc_labels.all %} - {% for bclabel in project.bc_labels.all %} -
- {% include 'bclabels/tiny-labels.html' %} -
- {% endfor %} - {% endif %} - {% else %} -
- {% if project.project_notice.all %} - {% for notice in project.project_notice.all %} - {% if not notice.archived %} - {% if notice.notice_type == 'biocultural' %} -
BC Notice icon. Black background with the top right corner folded and the letters “BC” in white in center.
- {% endif %} - {% if notice.notice_type == 'traditional_knowledge' %} -
TK Notice icon. Black background with the top right corner folded and the letters “TK” in white in center.
- {% endif %} - {% if notice.notice_type == 'attribution_incomplete' %} -
Attribution Incomplete Notice icon. Black square with the top right corner folded and a white square in center with left side in solid line and right side in dotted line.
- {% endif %} - {% endif %} - {% endfor %} - {% endif %} -
- {% endif %} - -
- -
-