mirror of
https://github.com/aclist/dztui.git
synced 2026-08-25 17:32:36 +02:00
feat: add admonition to submit ticket
This commit is contained in:
parent
190face11d
commit
161957e053
@ -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",
|
||||
|
||||
@ -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)]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user