{% extends "base.html" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
{% if customer %}
Account Status:
{{ 'Active' if customer.active else 'Disabled' }}
{% if customer.active %}
Disabling prevents the customer from logging in immediately.
{% else %}
This account is currently disabled — the customer cannot log in.
{% endif %}