feat: add admonition to submit ticket

This commit is contained in:
aclist 2025-12-13 23:10:54 +09:00
parent 190face11d
commit 161957e053
2 changed files with 3 additions and 2 deletions

View File

@ -343,7 +343,8 @@ thanks = Thanks(
header = "# Special thanks",
description = (
"This page recognizes beta testers, collaborators, code "
"contributors, and sponsors of the project in alphabetical order."
"contributors, and sponsors of the project in alphabetical order.\n"
"If you wish to be removed from this list, please submit a ticket."
),
users = [
"bongjutsu",

View File

@ -24,7 +24,7 @@ class Thanks(Gtk.Box):
header.set_markup(label)
self.add(header)
description = Gtk.Label(label=thanks.description)
description = Gtk.Label(label=thanks.description, justify=Gtk.Justification.CENTER)
self.add(description)
users = [f"- {user}" for user in sorted(thanks.users, key=str.lower)]