diff options
Diffstat (limited to 'bin/reproducible_html_indexes.py')
-rwxr-xr-x | bin/reproducible_html_indexes.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index b6340e10..e1b8394d 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -131,10 +131,8 @@ pages = { 'body': [ { 'query': 'scheduled', - 'text': Template('$tot packages are currently scheduled for testing in $suite/$arch:') - }, - { - 'text': Template('A <a href="/index_scheduled.html">full scheduling overview</a> is also available.') + 'text': Template('$tot packages are currently scheduled for testing in $suite/$arch:'), + 'bottom': 'A <a href="/index_scheduled.html">full scheduling overview</a> is also available.' } ] }, @@ -318,6 +316,8 @@ def build_page_section(section, suite, arch): html += get_trailing_icon(pkg, bugs) + '\n' html += tab + '</code>\n' html += '</p>' + if section.get('bottom'): + html += section['bottom'] html = (tab*2).join(html.splitlines(True)) return html |