- data-content='{% trans "Create an organization here. Organizations help manage team's work." %}'
- {% endif %}
->{% trans "New organization" %}</a></li>
-<li><a href="{% url 'catalogue_create_missing' %}" style="color: white"
- {% if request.path == '/' %}
+ data-content='{% trans "Organizations help manage team’s work. You can create a new organization and view all organizations." %}'
+ {% endif %}>
+ <a href="#" class="dropdown-toggle" type="button" data-toggle="dropdown" style="color: white">
+ {% trans "Organizations" %}
+ <span class="caret"></span>
+ </a>
+ <ul class="dropdown-menu">
+ <li><a href="{% url 'organizations_new' %}">{% trans "New organization" %}</a></li>
+ <li><a href="{% url 'organizations' %}">{% trans "All organizations" %}</a></li>
+ <li role="presentation" class="divider"></li>
+ {% if user.membership_set.all.exists %}
+ <li role="presentation" class="dropdown-header">{% trans "My organizations" %}:</li>
+ {% for membership in user.membership_set.all %}
+ <li><a href="{% url 'organizations_main' membership.organization.pk %}">{{ membership.organization }}</a></li>
+ {% endfor %}
+ {% else %}
+ <li role="presentation" class="dropdown-header">{% trans "You are not a member of any organizations" %}</li>
+ {% endif %}
+ </ul>
+</li>
+<li class="dropdown" {% if request.path == '/' %}