diff --git a/app/dashboard/templates/profiles/trust-vue.html b/app/dashboard/templates/profiles/trust-vue.html index 3b70f7f2a80..565137f59b9 100644 --- a/app/dashboard/templates/profiles/trust-vue.html +++ b/app/dashboard/templates/profiles/trust-vue.html @@ -145,9 +145,11 @@

Increase Your Impact Up to 150%

On Gitcoin verified users have 100% (or more) of their donation amount count towards the match fund algorithm. Unverified users begin with 50%. To ensure sybil resistance and protect Quadratic Funding, please verify your account below.
-
- Verify during [[round_start_date]] - [[round_end_date]] -
+ {% if round_active %} +
+ Verify during [[round_start_date]] - [[round_end_date]] +
+ {% endif %}
Why this matters
diff --git a/app/dashboard/views.py b/app/dashboard/views.py index 4fd38574127..d65216e17ed 100644 --- a/app/dashboard/views.py +++ b/app/dashboard/views.py @@ -2937,6 +2937,7 @@ def get_profile_tab(request, profile, tab, prev_context): # place clr dates (as unix ts) context['round_start_date'] = calendar.timegm(round_start_date.utctimetuple()) context['round_end_date'] = calendar.timegm(round_end_date.utctimetuple()) + context['round_active'] = round_active # detail available services services = [ diff --git a/app/grants/templates/grants/shared/landing_qf_active.html b/app/grants/templates/grants/shared/landing_qf_active.html index 092a6555496..aa4ad20a90f 100644 --- a/app/grants/templates/grants/shared/landing_qf_active.html +++ b/app/grants/templates/grants/shared/landing_qf_active.html @@ -2,7 +2,6 @@
-
@@ -13,11 +12,13 @@
Maximize Your Impact! Your current match is {{ trust_bonus }}%
Verified users have up to 150% of their donation amount count towards the match fund algorithm. Unverified users — only 50%. Maximize your match by verifying with identity partners.
- + {% if round_active %} + + {% endif %}
Why this matters