192e4a2433
CI / changes (pull_request) Successful in 2s
CI / unit (pull_request) Successful in 8s
CI / integration (pull_request) Successful in 13s
CI / ui (pull_request) Has been skipped
CI / gate (pull_request) Successful in 0s
CI / deploy (pull_request) Successful in 1m5s
Add an "Add hints" form on the admin user card that additively tops up a player's hint wallet (1-100 per grant). The grant is raise-only by construction (an additive UPDATE never lowers the balance) and stays correct under a concurrent in-game spend; a per-grant cap bounds a fat-finger, since the console can never reduce a wallet. The in-game hint policy is unchanged and already correct: a game offers the per-seat allowance plus the wallet, spending the allowance first and the wallet only after (covered by TestHintPolicy).
109 lines
4.6 KiB
Go Template
109 lines
4.6 KiB
Go Template
{{define "content" -}}
|
|
{{with .Data}}
|
|
<h1>{{.DisplayName}}</h1>
|
|
<nav class="subnav"><a href="/_gm/users">« users</a> · <a href="/_gm/messages?user={{.ID}}">messages</a></nav>
|
|
<div class="cards">
|
|
<section class="panel"><h2>Account</h2>
|
|
<ul class="kv">
|
|
<li><b>ID</b> {{.ID}}</li>
|
|
<li><b>Language</b> {{.Language}}</li>
|
|
<li><b>Timezone</b> {{.TimeZone}}</li>
|
|
<li><b>Guest</b> {{if .Guest}}yes{{else}}no{{end}}</li>
|
|
<li><b>Push</b> {{if .NotificationsInAppOnly}}in-app only{{else}}out-of-app{{end}}</li>
|
|
<li><b>Paid</b> {{if .PaidAccount}}yes{{else}}no{{end}}</li>
|
|
<li><b>Hint wallet</b> {{.HintBalance}}</li>
|
|
{{if .MergedInto}}<li><b>Merged into</b> {{.MergedInto}}</li>{{end}}
|
|
{{if .FlaggedHighRateAt}}<li><b>High-rate flag</b> <span class="warn">{{.FlaggedHighRateAt}}</span></li>{{end}}
|
|
<li><b>Created</b> {{.CreatedAt}}</li>
|
|
</ul>
|
|
{{if .FlaggedHighRateAt}}
|
|
<form class="form" method="post" action="/_gm/users/{{.ID}}/clear-high-rate-flag">
|
|
<button type="submit">Clear high-rate flag</button>
|
|
</form>
|
|
{{end}}
|
|
<form class="form" method="post" action="/_gm/users/{{.ID}}/grant-hints">
|
|
<label>Add hints <input type="number" name="amount" min="1" max="{{.HintGrantMax}}" value="1"></label>
|
|
<button type="submit">Grant</button>
|
|
</form>
|
|
</section>
|
|
<section class="panel"><h2>Statistics</h2>
|
|
{{if .HasStats}}
|
|
<ul class="kv">
|
|
<li><b>Wins</b> {{.Stats.Wins}}</li>
|
|
<li><b>Losses</b> {{.Stats.Losses}}</li>
|
|
<li><b>Draws</b> {{.Stats.Draws}}</li>
|
|
<li><b>Best game</b> {{.Stats.MaxGamePoints}}</li>
|
|
<li><b>Best move</b> {{.Stats.MaxWordPoints}}</li>
|
|
</ul>
|
|
{{else}}<p class="note">no statistics</p>{{end}}
|
|
</section>
|
|
</div>
|
|
<section class="panel"><h2>Account block</h2>
|
|
{{$uid := .ID}}
|
|
{{with .Suspension}}{{if .Blocked}}
|
|
<ul class="kv">
|
|
<li><b>Status</b> <span class="warn">{{if .Permanent}}blocked (permanent){{else}}blocked until {{.Until}} (UTC){{end}}</span></li>
|
|
{{if .BlockedAt}}<li><b>Since</b> {{.BlockedAt}}</li>{{end}}
|
|
{{if .ReasonEn}}<li><b>Reason</b> {{.ReasonEn}} / {{.ReasonRu}}</li>{{end}}
|
|
</ul>
|
|
<form class="form" method="post" action="/_gm/users/{{$uid}}/unblock">
|
|
<button type="submit">Unblock</button>
|
|
</form>
|
|
{{else}}<p class="note">not blocked</p>{{end}}{{end}}
|
|
<form class="form col" method="post" action="/_gm/users/{{.ID}}/block">
|
|
<label>Duration <select name="duration">
|
|
<option value="permanent">permanent</option>
|
|
<option value="1d">1 day</option>
|
|
<option value="3d">3 days</option>
|
|
<option value="1w">1 week</option>
|
|
<option value="1m">1 month</option>
|
|
<option value="custom">custom date (UTC)</option>
|
|
</select></label>
|
|
<label>Custom until (UTC; used when duration is "custom") <input type="datetime-local" name="until"></label>
|
|
<label>Reason <select name="reason">
|
|
<option value="">— none —</option>
|
|
{{range .Reasons}}<option value="{{.ID}}">{{.TextEn}}</option>{{end}}
|
|
</select></label>
|
|
<div><button type="submit">{{if .Suspension.Blocked}}Re-block{{else}}Block{{end}}</button></div>
|
|
</form>
|
|
</section>
|
|
{{if .MoveChart}}
|
|
<section class="panel"><h2>Move timing</h2>
|
|
<p class="note">Think time per move number across all games — <span class="lg lg-min">min</span> · <span class="lg lg-avg">mean</span> · <span class="lg lg-max">max</span>.</p>
|
|
{{.MoveChart}}
|
|
</section>
|
|
{{end}}
|
|
<section class="panel"><h2>Identities</h2>
|
|
<table class="list">
|
|
<thead><tr><th>Kind</th><th>External ID</th><th>Confirmed</th><th>Created</th></tr></thead>
|
|
<tbody>
|
|
{{range .Identities}}
|
|
<tr><td>{{.Kind}}</td><td><code>{{.ExternalID}}</code></td><td>{{if .Confirmed}}<span class="ok">yes</span>{{else}}<span class="warn">no</span>{{end}}</td><td>{{.CreatedAt}}</td></tr>
|
|
{{else}}<tr><td colspan="4"><span class="note">no identities (guest)</span></td></tr>{{end}}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
{{if .TelegramID}}
|
|
<section class="panel"><h2>Send Telegram message</h2>
|
|
{{if .ConnectorEnabled}}
|
|
<form class="form col" method="post" action="/_gm/users/{{.ID}}/message">
|
|
<label>Message <textarea name="text" required></textarea></label>
|
|
<label>Bot language <select name="language"><option value="en">en</option><option value="ru">ru</option></select></label>
|
|
<div><button type="submit">Send to user</button></div>
|
|
</form>
|
|
{{else}}<p class="note">connector not configured (set BACKEND_CONNECTOR_ADDR)</p>{{end}}
|
|
</section>
|
|
{{end}}
|
|
<section class="panel"><h2>Games</h2>
|
|
<table class="list">
|
|
<thead><tr><th>Game</th><th>Variant</th><th>Status</th><th class="num">Players</th><th>Updated</th></tr></thead>
|
|
<tbody>
|
|
{{range .Games}}
|
|
<tr><td><a href="/_gm/games/{{.ID}}">{{.ID}}</a></td><td>{{.Variant}}</td><td>{{.Status}}</td><td class="num">{{.Players}}</td><td>{{.UpdatedAt}}</td></tr>
|
|
{{else}}<tr><td colspan="5"><span class="note">no games</span></td></tr>{{end}}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
{{end}}
|
|
{{- end}}
|