ff14-mitigator/templates/report-form.php
xziino 7c0f070490 Add static statusId map for all mitigation abilities, drop supplementary buff query
All MITIGATION_ABILITIES entries now carry a statusId field (FFLogs status ID =
XIVAPI row_id + 1,000,000). The mitigIdMap is seeded from these static IDs as
fallback for abilities absent from masterData (e.g. pre-pull shields). Removes
the need for separate applybuff/removebuff API calls for name resolution. Also
adds shield buffType with tooltip on absorbed value, expanded icon set, and
unmitigatedAmount/mitigated passthrough.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-21 13:03:56 +02:00

21 lines
625 B
PHP

<div class="card section-gap">
<div class="card-title">Report laden</div>
<form id="report-form">
<div class="form-row">
<div class="fg">
<label>Report Code</label>
<input
type="text"
name="report_code"
placeholder="Code oder FFLogs-Link"
autocomplete="off"
spellcheck="false"
required
>
</div>
<button class="btn btn-gold" type="submit" style="align-self:flex-end">Fetch</button>
<a class="btn" href="auth/start.php" style="align-self:flex-end;text-decoration:none">Reconnect</a>
</div>
</form>
</div>