Pro-choice & venchoice
Home
Products
Contact
About
{% if current_user.is_authenticated %}
{% if current_user.is_admin %}
Dashboard
{% endif %}
Profile
Sign Out
{% else %}
Sign In
Sign Up
{% endif %}
{% if current_user.is_authenticated %}
{{ cart_count }}
{% endif %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}
Home
Cart
{% if cart_count > 0 %}
{{ cart_count }}
{% endif %}
{% if current_user.is_authenticated %}
Profile
{% if current_user.is_admin %}
Admin
{% endif %}
Sign Out
{% else %}
Sign In
{% endif %}