blob: adeabb61c57ed1a530252f7236636a6d03f1edec (
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
25
|
{% extends 'contact_form/contact_form.html' %}
{#==============================================
Fill in the Title And Dateline Blocks
================================================#}
{%block title %}
Thank You
{%endblock%}
{% block dateline %}
Thanks for sharing your thoughts
{% endblock%}
{#==============================================
Primary Content
================================================#}
{%block primary%}
<p>Thanks for sharing your thoughts, I will make an effort to respond promptly</p>
{% endblock %}
|