blob: 03c97e0a4b0ff0b4e1e038f949e2ba7dbb718d55 (
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
|
{% extends "base.html" %}
{% load fundraising_extras hosts i18n meetings %}
{% block og_title %}Django Software Foundation{% endblock %}
{% block layout_class %}sidebar-right{% endblock %}
{% block title %}Django Software Foundation{% endblock %}
{% block header %}
<p>Django Software Foundation</p>
{% endblock header %}
{% block content-related %}
{# Always include <h2> label and <div> with aria role. #}
<div role="complementary">
<h2 class="visuallyhidden" id="aside-header">{% translate "Additional Information" %}</h2>
{% block content-related-extra %}{% endblock %}
{% donation_snippet %}
<h3>About the foundation</h3>
<ul class="list-links">
<li><a href="{% host_url 'homepage' host 'www' %}foundation/faq/">FAQ</a></li>
<li><a href="{% host_url 'homepage' host 'www' %}foundation/records/">Records</a></li>
<li><a href="{% url 'contact_foundation' %}">Contact us</a></li>
<li><a href="{% host_url 'homepage' host 'www' %}foundation/cla/">Contributor license agreements</a></li>
<li><a href="{% host_url 'homepage' host 'www' %}foundation/conferences/">Organizing a Django conference</a></li>
</ul>
<h3>{% translate "Latest DSF meeting minutes" %}</h3>
<p> {% translate "The minutes from May 2025 onwards are stored in the repo" %}
<a href="https://github.com/django/dsf-minutes">https://github.com/django/dsf-minutes</a>
</p>
{% render_latest_meeting_minute_entries 2 %}
<a href="{% url 'foundation_meeting_archive_index' %}" class="link-readmore">{% translate "More meeting minutes" %}</a>
</div>
{% endblock content-related %}
|