summaryrefslogtreecommitdiff
path: root/djangoproject/templates/contact/sent.html
blob: 73b485fa943fe04f0a1937ee5605d156e25ae7d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base_foundation.html" %}
{% load i18n %}

{% block title %}{% translate "Message sent" %}{% endblock %}

{% block content %}
  <h1>{% translate "Message sent" %}</h1>
  <h2 class="deck">{% translate "Your message has been sent; thanks!" %}</h2>
  <p>
    {% blocktranslate trimmed %}
      Your mail <em>will</em> be read by a real, live human being. We can't
      guarantee when or whether you'll get a reply, but your message
      <em>will</em> be read, generally within the next couple of days.
    {% endblocktranslate %}
  </p>
  <p>
    {% blocktranslate trimmed %}
      If you're expecting a reply and don't get one, please feel free
      to send a reminder. Please wait a few days, however, unless
      it's an emergency.
    {% endblocktranslate %}
  </p>
{% endblock content %}