Skip to content

Commit

Permalink
Shunta owes me a drink
Browse files Browse the repository at this point in the history
  • Loading branch information
palmertab committed Nov 13, 2023
1 parent a9bb1b0 commit 8f7186d
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions web/user/tourn/request.mhtml
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -392,7 +399,7 @@
Clone setup from
</span>

% if ($person->site_admin) {
% if ($person->site_admin) {

<span class="threefifths">
<select
Expand All @@ -413,15 +420,15 @@
</span>

<span class="fifth centeralign">
<input
<input
type = "number"
id = "clone_id"
name = "clone_id"
placeholder = "or, ID#"
>
</span>

% } else {
% } else {

<span class="fourfifths">
<select
Expand Down

0 comments on commit 8f7186d

Please sign in to comment.