blob: 5f06a4cd7bea1c307bb42a487a7d7610cee83f9f (
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
|
{% extends "base_foundation.html" %}
{% load i18n %}
{% block og_title %}{% translate "Meet the Teams | Django Software Foundation" %}{% endblock %}
{% block og_description %}{% spaceless %}
{% blocktranslate trimmed %}
Get to know the teams behind the Django Software Foundation,
including the Steering Council and various committees. Learn about
their roles and responsibilities in advancing the development and
adoption of the Django web framework.
{% endblocktranslate %}
{% endspaceless %}{% endblock %}
{% block content %}
<h2>{% translate "Teams" %}</h2>
<p>
{% url 'document-detail' lang='en' version='dev' url='internals/organization' host 'docs' as organization_url %}
{% blocktranslate trimmed %}
The following teams are groups of people who support the Django project
and the Django Software Foundation. Apart from the Django Fellows, who
are paid contractors, all of these contributors are volunteers.
Most teams are distinct, contactable groups with their own set of goals.
Some roles are also listed, such as Mergers and Releasers, which are
individuals with elevated permissions rather than formal teams. For an
overview of how the Django Project is organized and the principles that
guide it, see the
<a href="{{ organization_url }}#organization-of-the-django-project">
organization and principles
</a> page.
{% endblocktranslate %}
</p>
{% for team in teams %}
<div class="section">
<h3 id="{{ team.slug }}-team">{{ team.name }}<a class="plink" href="#{{ team.slug }}-team">¶</a></h3>
<p>{{ team.description|safe }}</p>
<ul>
{% for member in team.members.all %}
<li>{{ member.name }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
{% endblock %}
|