From 8f7186d8c8fc67500a241d1a7072484ee45fa6d5 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Mon, 13 Nov 2023 16:30:05 -0500 Subject: [PATCH] Shunta owes me a drink --- web/user/tourn/request.mhtml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/web/user/tourn/request.mhtml b/web/user/tourn/request.mhtml index 95c3d43687..1ec85f87eb 100644 --- a/web/user/tourn/request.mhtml +++ b/web/user/tourn/request.mhtml @@ -10,11 +10,18 @@ my $request = $defaults->{"request"}; + my $no_districts = 1; + + if ($person->site_admin) { + # Mostly for the LCQ + undef $no_districts; + } + my @tourns = $m->comp( "/funclib/person_tourns.mas", person => $person, all => 1, - no_districts => 1 + no_districts => $no_districts ); my $startdt = eval { @@ -392,7 +399,7 @@ Clone setup from -% if ($person->site_admin) { +% if ($person->site_admin) { -% } else { +% } else {