Skip to content

Commit

Permalink
Merge pull request #1183 from rapidpro/fix-co-create
Browse files Browse the repository at this point in the history
Fix logic to display co-create link
  • Loading branch information
norkans7 authored Feb 5, 2024
2 parents ed5643c + 6071e6b commit b7ee667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/public_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@
<a href="{% url 'public.opinions' %}" class="hover:text-gray-600 block font-bold">{% trans "Opinions" %}</a>
<a href="{% url 'public.stories' %}" class="hover:text-gray-600 block mt-4 font-bold">{% trans "Stories" %}</a>
{% if org|config:"has_new_brand" %}
{% if org|config:"is_global" and org.subdomain != "" %}
{% if org|config:"is_global" and org.subdomain == "" %}
<a href="https://www.voicesofyouth.org/" class="hover:text-gray-600 block mt-4 font-bold">{% trans "Co-Create" %}</a>
{% endif %}
{% endif %}
Expand Down Expand Up @@ -662,7 +662,7 @@
class="hover:text-gray-750 hover:border-dark1-v2024 pb-2 border-b-2 border-black">{% trans "Stories" %}</a>
</div>
</div>
{% if org|config:"is_global" and org.subdomain != "" %}
{% if org|config:"is_global" and org.subdomain == "" %}
<div class="flex-1 text-center font-bold text-xl flex-center-y">
<div>
<a href="https://www.voicesofyouth.org/"
Expand Down

0 comments on commit b7ee667

Please sign in to comment.