{% extends 'base.html' %} {% block content %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% load socialaccount %} {% if user.is_authenticated %}

Hello {{ user.username }} . Click me if you'd like to sign-out


{% if all_items %} {% for things in all_items %} {% endfor %}
{{ things.item}}
{% endif %}
{% else %}

You have Sign-in first to use me



New Here? Follow me then ... Sign Up


Or


If you already have an account ... Log In


{% endif %} {% endblock %}