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