{% extends 'base.html' %} {% load static %} {% block title %} Profile {% endblock title %} {% block content %}
Username: {{profile.username}}
{% if profile.email %} {% if profile.email_is_verified %}
Email: {{profile.email|default:""}} {% static 'icons/verified.png' %}
{% if profile.send_email %}
Send Email: {% static 'icons/true.png' %}
{% else %}
Send Email: {% static 'icons/false.png' %}
{% endif %} {% else %}
Email: {{profile.email|default:""}} Verify
{% endif %} {% endif %}
IMDB API Key: {{profile.imdb_api_key}}
{% endblock content %}