Skip to content

Commit

Permalink
Fix #2013 : pas de lien d'adhésion si pas d'association
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavi committed Dec 29, 2014
1 parent 1ab9f44 commit 7f88891
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,9 @@ <h2 class="subtitle" {% if schema %}itemprop="description"{% endif %}>{{ headlin
<li><a href="{% url "zds.pages.views.about" %}">{% trans "À propos" %}</a></li>
{% if app.site.association %}
<li><a href="{% url "zds.pages.views.association" %}">{% trans "L'association" %}</a></li>
{% endif %}
{% if user.is_authenticated %}
<li><a href="{% url "zds.pages.views.assoc_subscribe" %}">{% trans "Adhérer" %}</a></li>
{% if user.is_authenticated %}
<li><a href="{% url "zds.pages.views.assoc_subscribe" %}">{% trans "Adhérer" %}</a></li>
{% endif %}
{% endif %}
<li><a href="{% url "zds.pages.views.contact" %}">{% trans "Contact" %}</a></li>
</ul>
Expand Down

0 comments on commit 7f88891

Please sign in to comment.