diff options
-rw-r--r-- | web/index.html | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/web/index.html b/web/index.html index 4b903dd..7fbc7c5 100644 --- a/web/index.html +++ b/web/index.html @@ -39,21 +39,23 @@ <li>blotki nie są weryfikowane (kolor może posiadać zduplikowane blotki, może też posiadać niemożliwą liczbę blotek, np. 10)</li> </ul> </form> - <table id="resultTemplate" style="display:none"> - <tr><th></th><th class="spades">♠</th><th class="hearts">♥</th><th class="diamonds">♦</th><th class="clubs">♣</th><th>Σ</th></tr> - <tr><td>Honory (lewy)</td><td>{{lh.s}}</td><td>{{lh.h}}</td><td>{{lh.d}}</td><td>{{lh.c}}</td><td class="subtotal">{{lh.total}}</td></tr> - <tr><td>Poprawka za zgrupowania honorów</td><td>{{lh_plus.s}}</td><td>{{lh_plus.h}}</td><td>{{lh_plus.d}}</td><td>{{lh_plus.c}}</td><td class="subtotal">{{lh_plus.total}}</td></tr> - <tr><td>Poprawka za podwiązania honorów</td><td>{{lh_10.s}}</td><td>{{lh_10.h}}</td><td>{{lh_10.d}}</td><td>{{lh_10.c}}</td><td class="subtotal">{{lh_10.total}}</td></tr> - <tr><td>Poprawka za krótkie honory</td><td>{{lh_short.s}}</td><td>{{lh_short.h}}</td><td>{{lh_short.d}}</td><td>{{lh_short.c}}</td><td class="subtotal">{{lh_short.total}}</td></tr> - <tr class="subtotal"><td>Lewy honorowe</td><td>{{lh_subtotal.s}}</td><td>{{lh_subtotal.h}}</td><td>{{lh_subtotal.d}}</td><td>{{lh_subtotal.c}}</td><td>{{lh_subtotal.total}}</td></tr> - <tr><td>Lewy układowe</td><td>{{lu.s}}</td><td>{{lu.h}}</td><td>{{lu.d}}</td><td>{{lu.c}}</td><td class="subtotal">{{lu.total}}</td></tr> - <tr class="subtotal"><td>Razem</td><td>{{subtotal.s}}</td><td>{{subtotal.h}}</td><td>{{subtotal.d}}</td><td>{{subtotal.c}}</td><td>{{subtotal.total}}</td></tr> - <tr><td>Poprawka za lewy szybkie</td><td colspan="5">{{lsz.total}}</td></tr> - <tr><td>Poprawka za wysokie blotki</td><td colspan="5">{{lu_plus.total}}</td></tr> - <tr><td>Poprawka za kolory krótkie</td><td colspan="5">{{short_suit.total}}</td></tr> - <tr><td>Poprawka za kolory starsze</td><td colspan="5">{{major_suit.total}}</td></tr> - <tr><td>Poprawka za lokalizację</td><td colspan="5">{{l10n.total}}</td></tr> - <tr class="total"><td>Łącznie</td><td colspan="5">{{total.total}}</td></tr> - </table> + <div id="resultTemplate" style="display:none"> + <table cellspacing="0" cellpadding="0"> + <tr><th></th><th class="spades">♠</th><th class="hearts">♥</th><th class="diamonds">♦</th><th class="clubs">♣</th><th>Σ</th></tr> + <tr><td>Honory (lewy)</td><td>{{lh.s}}</td><td>{{lh.h}}</td><td>{{lh.d}}</td><td>{{lh.c}}</td><td class="subtotal">{{lh.total}}</td></tr> + <tr><td>Poprawka za zgrupowania honorów</td><td>{{lh_plus.s}}</td><td>{{lh_plus.h}}</td><td>{{lh_plus.d}}</td><td>{{lh_plus.c}}</td><td class="subtotal">{{lh_plus.total}}</td></tr> + <tr><td>Poprawka za podwiązania honorów</td><td>{{lh_10.s}}</td><td>{{lh_10.h}}</td><td>{{lh_10.d}}</td><td>{{lh_10.c}}</td><td class="subtotal">{{lh_10.total}}</td></tr> + <tr><td>Poprawka za krótkie honory</td><td>{{lh_short.s}}</td><td>{{lh_short.h}}</td><td>{{lh_short.d}}</td><td>{{lh_short.c}}</td><td class="subtotal">{{lh_short.total}}</td></tr> + <tr class="subtotal"><td>Lewy honorowe</td><td>{{lh_subtotal.s}}</td><td>{{lh_subtotal.h}}</td><td>{{lh_subtotal.d}}</td><td>{{lh_subtotal.c}}</td><td>{{lh_subtotal.total}}</td></tr> + <tr><td>Lewy układowe</td><td>{{lu.s}}</td><td>{{lu.h}}</td><td>{{lu.d}}</td><td>{{lu.c}}</td><td class="subtotal">{{lu.total}}</td></tr> + <tr class="subtotal"><td>Razem</td><td>{{subtotal.s}}</td><td>{{subtotal.h}}</td><td>{{subtotal.d}}</td><td>{{subtotal.c}}</td><td>{{subtotal.total}}</td></tr> + <tr><td>Poprawka za lewy szybkie</td><td colspan="5">{{lsz.total}}</td></tr> + <tr><td>Poprawka za wysokie blotki</td><td colspan="5">{{lu_plus.total}}</td></tr> + <tr><td>Poprawka za kolory krótkie</td><td colspan="5">{{short_suit.total}}</td></tr> + <tr><td>Poprawka za kolory starsze</td><td colspan="5">{{major_suit.total}}</td></tr> + <tr><td>Poprawka za lokalizację</td><td colspan="5">{{l10n.total}}</td></tr> + <tr class="total"><td>Łącznie</td><td colspan="5">{{total.total}}</td></tr> + </table> + </div> </body> </html> |