Skip to content

Added the DSF board meeting link #2085

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions djangoproject/templates/foundation/meeting_archive.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
{% block content %}
<h1>{% translate "Meeting minutes archive" %}</h1>

<div class="alert alert-info">
<strong>Note:</strong> DSF board meeting minutes from May 2025 onwards are stored in our public GitHub repository:
<a href="https://github.com/django/dsf-minutes" target="_blank" rel="noopener">https://github.com/django/dsf-minutes</a>
</div>

<p>{% translate "Select a year to view meeting minutes:" %}</p>

<ul>
Expand Down
5 changes: 5 additions & 0 deletions djangoproject/templates/foundation/meeting_archive_month.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
{% block content %}
<h1>{% blocktranslate with month=month|date:"F, Y" %}Meeting minutes archive: {{ month }}{% endblocktranslate %}</h1>

<div class="alert alert-info">
<strong>Note:</strong> DSF board meeting minutes from May 2025 onwards are stored in our public GitHub repository:
<a href="https://github.com/django/dsf-minutes" target="_blank" rel="noopener">https://github.com/django/dsf-minutes</a>
</div>

<ul>
{% for meeting in object_list %}
<li><a href="{{ meeting.get_absolute_url }}">{{ meeting }}</a></li>
Expand Down
5 changes: 5 additions & 0 deletions djangoproject/templates/foundation/meeting_archive_year.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
{% block content %}
<h1>{% blocktranslate with year=year|date:"Y" %}Meeting minutes archive: {{ year }}{% endblocktranslate %}</h1>

<div class="alert alert-info">
<strong>Note:</strong> DSF board meeting minutes from May 2025 onwards are stored in our public GitHub repository:
<a href="https://github.com/django/dsf-minutes" target="_blank" rel="noopener">https://github.com/django/dsf-minutes</a>
</div>

<ul>
{% for meeting in object_list %}
<li><a href="{{ meeting.get_absolute_url }}">{{ meeting }}</a></li>
Expand Down
5 changes: 5 additions & 0 deletions djangoproject/templates/foundation/meeting_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@

<h1>{{ meeting }}</h1>

<div class="alert alert-info">
<strong>Note:</strong> DSF board meeting minutes from May 2025 onwards are stored in our public GitHub repository:
<a href="https://github.com/django/dsf-minutes" target="_blank" rel="noopener">https://github.com/django/dsf-minutes</a>
</div>

<p>
{% blocktranslate trimmed with name=meeting.leader.account.get_full_name %}
The meeting was led by {{ name }}.
Expand Down