wording update for better clarity
This commit is contained in:
parent
f0b918aa2c
commit
5ab2e0d8d2
|
@ -20,7 +20,7 @@
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Points balance:</th>
|
<th>Your points balance</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
{% for user in users %}
|
{% for user in users %}
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Counters</th>
|
<th>Active counters</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
{% for counter in counters %}
|
{% for counter in counters %}
|
||||||
|
@ -51,6 +51,9 @@
|
||||||
{% if queue %}
|
{% if queue %}
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Recent redeems</th>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Time</th>
|
<th>Time</th>
|
||||||
<th>Redeem</th>
|
<th>Redeem</th>
|
||||||
|
@ -74,7 +77,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id='redeems-list' class="tabcontent">
|
<div id='redeems-list' class="tabcontent">
|
||||||
<h3>Currently Active Redeems</h3>
|
<h3>Currently active redeems</h3>
|
||||||
|
<p>If you have enough points, you can redeem those by typing the command in chat.</p>
|
||||||
<body>
|
<body>
|
||||||
{% if redeems %}
|
{% if redeems %}
|
||||||
<table>
|
<table>
|
||||||
|
@ -88,7 +92,7 @@
|
||||||
</thead>
|
</thead>
|
||||||
{% for redeem, redeem_info in redeems.items() %}
|
{% for redeem, redeem_info in redeems.items() %}
|
||||||
<tbody>
|
<tbody>
|
||||||
<td>{{ redeem }}</td>
|
<td>!{{ redeem }}</td>
|
||||||
<td>{{ redeem_info["price"] }}</td>
|
<td>{{ redeem_info["price"] }}</td>
|
||||||
<td>{{ redeem_info["type"] }}</td>
|
<td>{{ redeem_info["type"] }}</td>
|
||||||
{% if redeem_info["info"] %}
|
{% if redeem_info["info"] %}
|
||||||
|
|
Loading…
Reference in New Issue