Calorie Counter
{% if user.is_authenticated %}
Dashboard
History
{% endif %}
{% if user.is_authenticated %}
{{ user.userprofile.name|default:user.username }}
Edit Profile
Set Calorie Goal
Logout
{% else %}
Login
Register
{% endif %}
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% block content %}{% endblock %}