summaryrefslogtreecommitdiff
path: root/djangoproject/templates/contact/foundation.html
blob: 381225fa77896b167555c6cb6a6dff31a72f9ca0 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% extends "base_foundation.html" %}
{% load i18n %}

{% block title %}{% translate "Contact the Django Software Foundation" %}{% endblock %}

{% block content %}
  <h1>{% translate "Contact the Django Software Foundation" %}</h1>
  <p>
    {% blocktranslate trimmed %}
      This contact form is for the Django Software Foundation - the legal and
      fundraising arm of the Django project.
    {% endblocktranslate %}
  </p>
  <p>
    {% blocktranslate trimmed %}
      If you want to report a bug, feature request, or documentation issue in Django,
      use the <a href="https://code.djangoproject.com">ticket tracker</a>.
    {% endblocktranslate %}
  </p>
  <p>
    {% blocktranslate trimmed %}
      If you want to report a problem with this website, use the
      <a href="https://github.com/django/djangoproject.com">GitHub repo</a>.
    {% endblocktranslate %}
  </p>
  <p>
    {% blocktranslate trimmed %}
      If you've got questions about how to use Django, use the
      <a href="https://forum.djangoproject.com">Django Forum</a>.
    {% endblocktranslate %}
  </p>
  <form action="." method="post" accept-charset="utf-8">
    {% csrf_token %}
    <div>
      {{ form.name.as_field_group }}
    </div>
    <div>
      {{ form.email.as_field_group }}
    </div>
    <div>
      {{ form.message_subject.as_field_group }}
    </div>
    <div>
      {{ form.body.as_field_group }}
    </div>
    {{ form.captcha }}
    <div class="submit">
      <button type="submit" class="cta arrow">{% translate "Send" %}</button>
    </div>
  </form>
{% endblock content %}