more text to explain redeems

This commit is contained in:
Lili (Tlapka) 2022-11-09 14:54:00 +01:00
parent 5ab2e0d8d2
commit e33ab1f74b
1 changed files with 8 additions and 4 deletions

View File

@ -9,8 +9,8 @@
<script src="/static/dashboard.js"></script> <script src="/static/dashboard.js"></script>
<div class="tab"> <div class="tab">
<button class="tablinks" onclick="openTab(event, 'dashboard')", id="defaultOpen">Redeems Dashboard</button> <button class="tablinks" onclick="openTab(event, 'dashboard')", id="defaultOpen">Tlapbot dashboard</button>
<button class="tablinks" onclick="openTab(event, 'redeems-list')">List of Redeems</button> <button class="tablinks" onclick="openTab(event, 'redeems-list')">Redeems help</button>
</div> </div>
<div id='dashboard' class="tabcontent"> <div id='dashboard' class="tabcontent">
@ -78,7 +78,12 @@
<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> <p>If you have enough points, you can redeem those redeems by typing the command in chat.</p>
<ul>
<li><strong>Counter</strong> redeems add +1 to their counter.</li>
<li><strong>List</strong> redeems get added to the list of recent redeems (without a note).</li>
<li><strong>Note</strong> redeems require you to send a message together with the redeem.</li>
</ul>
<body> <body>
{% if redeems %} {% if redeems %}
<table> <table>
@ -108,7 +113,6 @@
</div> </div>
<script> <script>
// Get the element with id="defaultOpen" and click on it
document.getElementById("defaultOpen").click(); document.getElementById("defaultOpen").click();
</script> </script>