blob: e235772039b9898a914d5b30bce8f61eb73d0d3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{% extends "base.html" %}
{% block title %}Options saved.{% endblock %}
{% block content %}
<h2> Thank you, your following options have been saved to the database </h2>
{{first_paper}}
{% for option in options_available_first %}
<p>{{ option.opt_name }}</p>
{% endfor %}
{% if email %}
An email with all the options has been to the following email address: {{email}}
{% endif %}
{% endblock content %}
|