summaryrefslogtreecommitdiff
path: root/djangoproject/templates/base_community.html
blob: 7df7414afbc5d0a53c027adf190d9a3279e11464 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{% extends "base.html" %}
{% load fundraising_extras i18n hosts %}

{% block og_title %}{% translate "Django Community" %}{% endblock %}
{% block og_description %}{% translate "Building the Django Community. Come join us!" %}{% endblock %}

{% block layout_class %}sidebar-right{% endblock %}
{% block title %}{% translate "Django Community" %}{% endblock %}

{% block header %}
  <p>
    {% if community_stats.age %}
      {% blocktranslate trimmed with age=community_stats.age %}
        Building the <em>Django</em> Community for <em>{{ age }}</em>.
      {% endblocktranslate %}
    {% else %}
      {% translate "Building the <em>Django</em> Community." %}
    {% endif %}
    {% translate "Come join us!" %}
  </p>
{% endblock %}

{% block content-related %}
  <div role="complementary">
    <h2 class="visuallyhidden" id="aside-header">{% translate "Additional Information" %}</h2>

    {% block content-related-extra %}{% endblock %}

    {% donation_snippet %}

    <h3>{% translate "More Help" %}</h3>
    <dl class="list-links">
      <dt>
        <a href="{% url 'document-detail' lang='en' version='stable' url='faq' host 'docs' %}">
          {% translate "Frequently Asked Questions" %}
        </a>
      </dt>
      <dd>{% translate "The FAQ answers many common questions" %}</dd>
      <dt><a href="https://www.reddit.com/r/django/" rel="nofollow">r/Django Subreddit</a></dt>
      <dd>{% translate "News and links on Reddit" %}</dd>
      <dt><a href="https://stackoverflow.com/questions/tagged/django" rel="nofollow">StackOverflow</a></dt>
      <dd>{% translate "Search community answers" %}</dd>
      <dt><a href="irc://irc.libera.chat/django">{% translate "#django IRC Channel" %}</a></dt>
      <dd>{% translate "Chat with other Django users like it's 1999" %}</dd>
    </dl>

    <h3>{% translate "Dive In" %}</h3>
    <dl class="list-links">
      <dt><a href="https://code.djangoproject.com/">{% translate "Ticket System" %}</a></dt>
      <dd>{% translate "View and update bug reports" %}</dd>
      <dt><a href="{% host_url 'dashboard-index' host 'dashboard' %}">{% translate "Development Dashboard" %}</a></dt>
      <dd>{% translate "Statistics about Django development" %}</dd>
      <dt><a href="https://groups.google.com/group/django-updates">{% translate "django-updates Mailing List" %}</a></dt>
      <dd>{% translate "Get updated for each code and ticket change" %}</dd>
    </dl>

    <h3>{% translate "More Links" %}</h3>
    <dl class="list-links">
      <dt><a href="https://www.djangopackages.com/" rel="nofollow">{% translate "Django Packages" %}</a></dt>
      <dd>{% translate "Find third-party packages to supercharge your project" %}</dd>
      <dt><a href="https://builtwithdjango.com/projects/" rel="nofollow">{% translate "Django-powered Sites" %}</a></dt>
      <dd>{% translate "Add your site to the list" %}</dd>
      <dt><a href="{% host_url "homepage" host "www" %}community/badges/">{% translate "Django Badges" %}</a></dt>
      <dd>{% translate "Show your support (or wish longingly)" %}</dd>
      <dt><a href="{% host_url "homepage" host "www" %}community/logos/">{% translate "Django Logos" %}</a></dt>
      <dd>{% translate "Download official logos" %}</dd>
    </dl>
  </div>
{% endblock %}