{% load static %} {% block title %}Polls App{% endblock %}
{% block content %}{% endblock %}
Current User Info
id         = {{ user.id }}
username   = {{ user.username }}
first_name = {{ user.first_name }}
last_name  = {{ user.last_name }}
email      = {{ user.email }}
is_authenticated = {{ user.is_authenticated }}
is_staff         = {{ user.is_staff }}
is_active        = {{ user.is_active }}
is_superuser     = {{ user.is_superuser }}
last_login  = {{ user.last_login }}
date_joined = {{ user.date_joined }}