{% comment %} USER MENU MOLECULE — AVATAR DROPDOWN, OR LOG IN / SIGN UP WHEN ANONYMOUS. {% endcomment %} {% load django_fundamentals %} {% if request.user.is_authenticated %}
{% else %}
{% nav_url "account_login" as loginUrl %} {% nav_url "account_signup" as signupUrl %} {% if loginUrl %} {% include "django_fundamentals/atoms/button.html" with label="Log in" variant="ghost" href=loginUrl %} {% endif %} {% if signupUrl %} {% include "django_fundamentals/atoms/button.html" with label="Sign up" href=signupUrl %} {% endif %}
{% endif %}