{% load static %}
{% block title %}MyDairy{% endblock %}
Home
{% if user.profile.user_type == 'Customer' %}
{{user.first_name}} {{user.last_name}}
{% endif %} {% if user.is_authenticated and user.profile.user_type == 'Manager'%}
Vendor
Vendor
Milk Category
All Vendors
Customers
Sign Up
Customer
Milk Category
All Customers
{% endif %}
{% if user.is_authenticated %}
{% if user.profile.user_type == 'Manager' %}
Manager
{% elif user.profile.user_type == 'Customer' %}
Customer
{% endif %}{{ user.username }}
Change Password
Log Out
{% else %}
Log In
{% endif %}
{% block content %} {% endblock %}