{% extends 'base.html' %} {% block content %}

Index

{% if request.user.is_authenticated %}

Welcome, {{ request.user.first_name }}! You have access to the following pages:

{% else %}

Welcome! You have access to the following pages:

{% endif %}
{% endblock %}