Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions djangoproject/templates/base_foundation.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ <h3>About the foundation</h3>
<li><a href="/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 https://github.com/django/dsf-minutes" %} </p>
{% render_latest_meeting_minute_entries 2 %}
<a href="{% url 'foundation_meeting_archive_index' %}" class="link-readmore">{% translate "More meeting minutes" %}</a>
</div>
Expand Down
14 changes: 8 additions & 6 deletions djangoproject/templates/foundation/meeting_archive.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@
{% block content %}
<h1>{% translate "Meeting minutes archive" %}</h1>

<p>{% translate "Select a year to view meeting minutes:" %}</p>
<p>{% translate "The minutes from May 2025 onwards are stored in the repo https://github.com/django/dsf-minutes" %}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as above.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SaptakS I have updated the PR with the changes you have requested, I hope this will address your comment.


<ul>
{% for year in date_list %}
<li><a href="{% url 'foundation_meeting_archive_year' year=year.year %}">{{ year.year }}</a></li>
{% endfor %}
</ul>
<p>{% translate "Select a year to view meeting minutes:" %}</p>

<ul>
{% for year in date_list %}
<li><a href="{% url 'foundation_meeting_archive_year' year=year.year %}">{{ year.year }}</a></li>
{% endfor %}
</ul>
{% endblock %}