Skip to content
Merged
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 NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ UNRELEASED
``.information`` styling out of an inline ``style=`` attribute
into ``diff.css``. (Jelmer Vernooij, #449980)

- Also render the Newer/Older pagination controls above the
changelog table, not only below it, so users don't have to
scroll past the full page to navigate. (Jelmer Vernooij,
#522118)

3.0.0 [22Apr2026]
-----------------

Expand Down
15 changes: 13 additions & 2 deletions static/css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,21 @@ li.files#directory {
/* =========================
Pagination
*/
ul#pages {
ul#pages,
ul.pages {
float: right;
list-style: none;
padding: 0;
}
/* The top copy sits on its own line above the table so the
controls don't collide with the expand/collapse row
(bug #522118). */
ul.pages-top {
clear: both;
margin-bottom: 4px;
}
#pages li {
#pages li,
.pages li {
font-size: 77%;
font-weight: bold;
float: left;
Expand Down
13 changes: 13 additions & 0 deletions templates/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@
<p class="expand show_if_js" id="expand_all"><a href="#"><img alt="expand all" src="/static/images/treeCollapsed.png" /> expand all</a></p>
<p class="expand" id="collapse_all" style="display:none;"><a href="#"><img alt="collapse all" src="/static/images/treeExpanded.png" /> collapse all</a></p>

{% if prev_page_url.is_some() || next_page_url.is_some() %}
<ul class="pages pages-top">
{% match prev_page_url %}
{% when Some with (u) %}<li class="previous"><a href="{{ u }}">&laquo; Newer</a></li>
{% when None %}
{% endmatch %}
{% match next_page_url %}
{% when Some with (u) %}<li class="next"><a href="{{ u }}">Older &raquo;</a></li>
{% when None %}
{% endmatch %}
</ul>
{% endif %}

<table id="logentries">
<tr class="logheader">
<th class="revisionnumber">Rev</th>
Expand Down
Loading