Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<div style="margin-top:5px; max-height: 400px; overflow-y: auto;"></div>
{{#if data}}
{{trans.playerStatusWindow}}:
{{#eq type "android"}}
<div class="card p-3 mb-3 bg-light">
<span>{{{data}}}</span>
</div>
{{/eq}}
{{#neq type "android"}}
<div class="card p-3 mb-3 bg-light">
<ul>
{{#each data as |value key|}}
<li>{{key}}: {{value}}</li>
{{/each}}
</ul>
</div>
{{/neq}}
{{/if}}
</div>