Skip to content

Commit

Permalink
Improve the appearance of player decks display
Browse files Browse the repository at this point in the history
  • Loading branch information
bakert committed Nov 26, 2024
1 parent ff1c39e commit 1821bab
Showing 1 changed file with 14 additions and 19 deletions.
33 changes: 14 additions & 19 deletions gatherling/templates/partials/allDecks.mustache
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
<p>Decks marked with a <font color="#FF0000">*</font> are not legal under current format.</p>

<div class="alpha grid_6">
<div id="gatherling_lefthalf">
<table width="275">
<tr>
<td colspan="3"><b>{{upPlayer}}'S DECKS</td>
</tr>
{{#decks}}
<tr>
<td width="20">{{#medalSrc}}<img alt="Medal" src="{{medalSrc}}" style="border-width: 0">{{/medalSrc}}</td>
<td width="20">{{recordString}}</td>
<td>{{#deckLink}}{{> deckLink}}{{/deckLink}}{{^isValid}}<font color="#FF0000">*</font>{{/isValid}}</td>
<td align="right"><a href="{{eventLink}}">{{eventName}}</a></td>
</tr>
{{/decks}}
</table>
</div>
</div>
<div class="omega grid_4">
<div id="gatherling_righthalf"></div>
<div>
<table>
<tr>
<td colspan="3"><b>{{upPlayer}}'S DECKS</b></td>
</tr>
{{#decks}}
<tr>
<td>{{#medalSrc}}<img alt="Medal" src="{{medalSrc}}" style="border-width: 0">{{/medalSrc}}</td>
<td>{{recordString}}</td>
<td>{{#deckLink}}{{> deckLink}}{{/deckLink}}{{^isValid}}<font color="#FF0000">*</font>{{/isValid}}</td>
<td align="right"><a href="{{eventLink}}">{{eventName}}</a></td>
</tr>
{{/decks}}
</table>
</div>

0 comments on commit 1821bab

Please sign in to comment.