mirror of
https://github.com/slawkens/myaac.git
synced 2025-11-28 06:06:51 +01:00
New setting: Display Skills Box on highscores
Better space management
This commit is contained in:
@@ -1062,6 +1062,12 @@ Sent by MyAAC,<br/>
|
|||||||
'desc' => 'How often to update highscores from database in minutes. Too low may slow down your website.<br/>0 to disable.',
|
'desc' => 'How often to update highscores from database in minutes. Too low may slow down your website.<br/>0 to disable.',
|
||||||
'default' => 15,
|
'default' => 15,
|
||||||
],
|
],
|
||||||
|
'highscores_skills_box' => [
|
||||||
|
'name' => 'Display Skills Box',
|
||||||
|
'type' => 'boolean',
|
||||||
|
'desc' => 'show "Choose a skill" box on the highscores (allowing peoples to sort highscores by skill)?',
|
||||||
|
'default' => true,
|
||||||
|
],
|
||||||
'highscores_vocation_box' => [
|
'highscores_vocation_box' => [
|
||||||
'name' => 'Display Vocation Box',
|
'name' => 'Display Vocation Box',
|
||||||
'type' => 'boolean',
|
'type' => 'boolean',
|
||||||
|
|||||||
@@ -94,8 +94,10 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
|
{% if setting('core.highscores_skills_box') or setting('core.highscores_vocation_box') %}
|
||||||
<td width="5%"></td>
|
<td width="5%"></td>
|
||||||
<td width="15%" valign="top" align="right">
|
<td width="15%" valign="top" align="right">
|
||||||
|
{% if setting('core.highscores_skills_box') %}
|
||||||
<table style="border: 0; width: 100%" cellpadding="4" cellspacing="1">
|
<table style="border: 0; width: 100%" cellpadding="4" cellspacing="1">
|
||||||
<tr bgcolor="{{ config.vdarkborder }}">
|
<tr bgcolor="{{ config.vdarkborder }}">
|
||||||
<td class="white"><B>Choose a skill</B></TD>
|
<td class="white"><B>Choose a skill</B></TD>
|
||||||
@@ -109,7 +111,8 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br/>
|
<br/>
|
||||||
{% if config.highscores_vocation_box %}
|
{% endif %}
|
||||||
|
{% if setting('core.highscores_vocation_box') %}
|
||||||
<table border="0" width="100%" cellpadding="4" cellspacing="1">
|
<table border="0" width="100%" cellpadding="4" cellspacing="1">
|
||||||
<tr bgcolor="{{ config.vdarkborder }}">
|
<tr bgcolor="{{ config.vdarkborder }}">
|
||||||
<td class="white"><b>Choose a vocation</b></td>
|
<td class="white"><b>Choose a vocation</b></td>
|
||||||
@@ -126,5 +129,6 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td style="width: 18px"></td>
|
<td style="width: 18px"></td>
|
||||||
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user