<!-- templates/sites/emails/subscription_required.html -->
{% extends "email/base.html" %}
{% load i18n %}

{% block content %}
<h2>{% trans "Site Deactivation Notification" %}</h2>
<p>{% trans "The following site has been deactivated and is no longer accessible:" %}</p>

<div class="site-details">
    <p><strong>{% trans "Site Title:" %}</strong> {{ site.title }}</p>
    <p><strong>{% trans "Vendor Name:" %}</strong> {{ vendor.company_name }}</p>
    <p><strong>{% trans "Deactivation Date:" %}</strong> {{ site.unpublished_at|date }}</p>
</div>

<div class="action-button">
    <a href="{{ site_url }}" class="button">{% trans "View Site Information" %}</a>
</div>
{% endblock %}
