{% extends 'cm_portal/base.html' %} {% block title %}| Home{% endblock %} {% load static %} {% block navbar %} {% include 'includes/nav_base.html' %} {% endblock %} {% block sidebar %} {% if user.is_authenticated %} {% include 'includes/user.html' %} {% endif %} {% include 'includes/index_sidebar.html' %} {% endblock %} {% block page_title %}| Home{% endblock %} {% block messages %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endblock %} {% block content %}

Welcome {% if user.first_name %} {{ user.first_name|capfirst }} {% else %} {{ user.get_username|capfirst }} {% endif %} to Camillus MedHaven Portal!

You are on your Dashboard


{% endblock %} {% block footer %} {% include 'includes/footer_base.html' %} {% endblock %}