14 lines
360 B
HTML
14 lines
360 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Subscription to {{ cl.long_name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Subscription to {{ cl.long_name }}</h1>
|
|
<p>
|
|
You email address {{ email }} has been successfully subscribed to {{ cl.long_name }}
|
|
</p>
|
|
<p>
|
|
<a href="{% url view_personal_list secret=cl.secret %}">Return to the list view</a>
|
|
</p>
|
|
{% endblock %}
|