4 Commits

Author SHA1 Message Date
cea449ddcd Merge branch 'upstream'
All checks were successful
Github-Actions / build (push) Successful in -34s
Docker Image CI / build (push) Successful in 3m10s
2025-09-17 16:17:38 -05:00
Lukas Fleischer
70e796acc3 Fix logout link formatting
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
2025-09-17 21:14:21 +02:00
Jelle van der Waa
242a126245 Update to Django 5.1.12 2025-09-17 21:13:11 +02:00
Jakub Klinkovský
03a0e748ec Fix format string for package links in todo lists
Fixes 0cf24055d5

Fixes https://github.com/archlinux/archweb/issues/582
2025-09-17 09:33:24 +02:00
3 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
-e git+https://github.com/fredj/cssmin.git@master#egg=cssmin
Django==5.1.10
Django==5.1.12
IPy==1.1
Markdown==3.3.7
bencode.py==4.0.0

View File

@@ -1207,12 +1207,12 @@ ul.signoff-list {
/* style input as a normal anchor */
input {
background: none!important;
background: none !important;
border: none;
padding: 0!important;
/*optional*/
padding: 0 0.5em !important;
/* optional */
font-family: arial, sans-serif;
font-size: 0.9em;
font-size: 100%;
/*input has OS specific font-family*/
color: #07b;
}

View File

@@ -13,7 +13,7 @@ def todopkg_details_link(todopkg):
pkg = todopkg.pkg
if not pkg:
return todopkg.pkgname
link = '<a href={url}s" title="View package details for {pkgname}">{pkgname}</a>'
link = '<a href="{url}" title="View package details for {pkgname}">{pkgname}</a>'
url = pkg_absolute_url(todopkg.repo, todopkg.arch, pkg.pkgname)
return format_html(link, url=url, pkgname=pkg.pkgname)