ausglamr/blogs/templates/thanks.html

18 lines
750 B
HTML
Raw Normal View History

2024-01-04 11:54:56 +11:00
{% extends "layout.html" %}
{% block content %}
{% if register_type == "message" %}
<p>Thanks for getting in touch!</p>
{% else %}
<p>Thankyou for registering your {{ register_type }}.</p>
{% if register_type == "email address" %}
<p>Check your inbox to confirm your subscription. You can opt-out at any time by clicking the link at the bottom of the weekly emails.</p>
2024-01-09 18:11:22 +11:00
{% elif register_type == "conference" %}
<p>Once your conference is approved, you will be able to register a <a href="{% url 'cfps' %}">Call for Papers</a> if you would like to do so.</p>
2024-01-04 11:54:56 +11:00
{% else %}
<p>Your {{ register_type }} registration will be reviewed before being added to <em>Aus GLAMR</em>.</p>
{% endif %}
{% endif %}
{% endblock %}