🧈 Butter Garden
Home
{% if current_user.is_authenticated %} {% if current_user.is_admin or current_user.can_add_recipes %}
{% if current_user.is_admin %}Recipe Management{% else %}My Recipes{% endif %}
{% endif %}
Logout
{% else %}
Login
{% endif %}
GitHub 🔗
{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% block content %}{% endblock %}