data_capture/templates/data_capture/email/price_list_retired.html

Summary

Maintainability
Test Coverage
{% extends "email/base.html" %}
{% load email_utils %}
{% load data_capture %}

{% block content %}
<h1>
  Your price list has been retired
</h1>
<p>
  The <a href="{{ details_link }}">price list</a> you submitted to CALC on {{ price_list.created_at|tz_timestamp }} has been retired, and its pricing data will no longer be visible in CALC. The submitted price list was for contract <b>{{ price_list.contract_number }}</b> ({{ price_list.get_schedule_title }}) with <b>{{ price_list.vendor_name }}</b>.
</p>
  {% cta url=details_link action_text="View the price list's details" %}
{% endblock %}